Update Chinese (China) translation
[yelp.git] / libyelp / yelp-magic-decompressor.h
blob4984dbab4bcd38d4c53b6d763f00343723483abf
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * Copyright (C) 2009 Red Hat, Inc.
4 * Copyright (C) 2009 Shaun McCance <shaunm@gnome.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 * Author: Shaun McCance <shaunm@gnome.org>
22 #ifndef __YELP_MAGIC_DECOMPRESSOR_H__
23 #define __YELP_MAGIC_DECOMPRESSOR_H__
25 #include <gio/gio.h>
27 G_BEGIN_DECLS
29 #define YELP_TYPE_MAGIC_DECOMPRESSOR (yelp_magic_decompressor_get_type ())
30 #define YELP_MAGIC_DECOMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), YELP_TYPE_MAGIC_DECOMPRESSOR, YelpMagicDecompressor))
31 #define YELP_MAGIC_DECOMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), YELP_TYPE_MAGIC_DECOMPRESSOR, YelpMagicDecompressorClass))
32 #define YELP_IS_MAGIC_DECOMPRESSOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), YELP_TYPE_MAGIC_DECOMPRESSOR))
33 #define YELP_IS_MAGIC_DECOMPRESSOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), YELP_TYPE_MAGIC_DECOMPRESSOR))
34 #define YELP_MAGIC_DECOMPRESSOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), YELP_TYPE_MAGIC_DECOMPRESSOR, YelpMagicDecompressorClass))
36 typedef struct _YelpMagicDecompressor YelpMagicDecompressor;
37 typedef struct _YelpMagicDecompressorClass YelpMagicDecompressorClass;
39 struct _YelpMagicDecompressorClass
41 GObjectClass parent_class;
44 G_GNUC_INTERNAL
45 GType yelp_magic_decompressor_get_type (void);
47 G_GNUC_INTERNAL
48 YelpMagicDecompressor *yelp_magic_decompressor_new (void);
50 G_END_DECLS
52 #endif /* __YELP_MAGIC_DECOMPRESSOR_H__ */