blob: d73d9fd7e8adbc4310398a572cc0a6a53323a05a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Copyright (C) 2012, Igalia S.L.
*/
#ifndef EPHY_ABOUT_HANDLER_H
#define EPHY_ABOUT_HANDLER_H
#include <glib.h>
#define EPHY_ABOUT_SCHEME "ephy-about"
#define EPHY_ABOUT_SCHEME_LEN 10
GString *ephy_about_handler_handle (const char *about);
void _ephy_about_handler_handle_plugins (GString *data_str,
GList *plugin_list);
#endif /* EPHY_ABOUT_HANDLER_H */
|