OLD | NEW |
(Empty) | |
| 1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| 2 /* |
| 3 * This program is free software; you can redistribute it and/or modify |
| 4 * it under the terms of the GNU General Public License as published by |
| 5 * the Free Software Foundation; either version 2 of the License, or |
| 6 * (at your option) any later version. |
| 7 * |
| 8 * This program is distributed in the hope that it will be useful, |
| 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 * GNU General Public License for more details: |
| 12 * |
| 13 * Copyright (C) 2008 - 2009 Novell, Inc. |
| 14 * Copyright (C) 2009 Red Hat, Inc. |
| 15 * Copyright 2011 by Samsung Electronics, Inc., |
| 16 */ |
| 17 |
| 18 #ifndef MM_PLUGIN_SAMSUNG_H |
| 19 #define MM_PLUGIN_SAMSUNG_H |
| 20 |
| 21 #include "mm-plugin.h" |
| 22 #include "mm-plugin-base.h" |
| 23 #include "mm-generic-gsm.h" |
| 24 |
| 25 #define MM_TYPE_PLUGIN_SAMSUNG (mm_plugin_samsung_get_type ()) |
| 26 #define MM_PLUGIN_SAMSUNG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM
_TYPE_PLUGIN_SAMSUNG, MMPluginSamsung)) |
| 27 #define MM_PLUGIN_SAMSUNG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM
_TYPE_PLUGIN_SAMSUNG, MMPluginSamsungClass)) |
| 28 #define MM_IS_PLUGIN_SAMSUNG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM
_TYPE_PLUGIN_SAMSUNG)) |
| 29 #define MM_IS_PLUGIN_SAMSUNG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM
_TYPE_PLUGIN_SAMSUNG)) |
| 30 #define MM_PLUGIN_SAMSUNG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM
_TYPE_PLUGIN_SAMSUNG, MMPluginSamsungClass)) |
| 31 |
| 32 typedef struct { |
| 33 MMPluginBase parent; |
| 34 } MMPluginSamsung; |
| 35 |
| 36 typedef struct { |
| 37 MMPluginBaseClass parent; |
| 38 } MMPluginSamsungClass; |
| 39 |
| 40 GType mm_plugin_samsung_get_type (void); |
| 41 |
| 42 G_MODULE_EXPORT MMPlugin *mm_plugin_create (void); |
| 43 |
| 44 #endif /* MM_PLUGIN_SAMSUNG_H */ |
| 45 |
OLD | NEW |