2
Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
4
This library is free software; you can redistribute it and/or
5
modify it under the terms of the GNU Lesser General Public
6
License as published by the Free Software Foundation; either
7
version 2.1 of the License, or (at your option) any later version.
9
See the file COPYING for the full license text.
12
#ifndef __MIDORI_EXTENSIONS_H__
13
#define __MIDORI_EXTENSIONS_H__
17
#include <katze/katze.h>
21
#define MIDORI_TYPE_EXTENSIONS \
22
(midori_extensions_get_type ())
23
#define MIDORI_EXTENSIONS(obj) \
24
(G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_EXTENSIONS, MidoriExtensions))
25
#define MIDORI_EXTENSIONS_CLASS(klass) \
26
(G_TYPE_CHECK_CLASS_CAST ((klass), MIDORI_TYPE_EXTENSIONS, MidoriExtensionsClass))
27
#define MIDORI_IS_EXTENSIONS(obj) \
28
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_EXTENSIONS))
29
#define MIDORI_IS_EXTENSIONS_CLASS(klass) \
30
(G_TYPE_CHECK_CLASS_TYPE ((klass), MIDORI_TYPE_EXTENSIONS))
31
#define MIDORI_EXTENSIONS_GET_CLASS(obj) \
32
(G_TYPE_INSTANCE_GET_CLASS ((obj), MIDORI_TYPE_EXTENSIONS, MidoriExtensionsClass))
34
typedef struct _MidoriExtensions MidoriExtensions;
35
typedef struct _MidoriExtensionsClass MidoriExtensionsClass;
38
midori_extensions_get_type (void);
41
midori_extensions_new (void);
45
#endif /* __MIDORI_EXTENSIONS_H__ */