diff options
author | Tambet Ingo <tambet@gmail.com> | 2008-11-18 13:04:21 +0200 |
---|---|---|
committer | Tambet Ingo <tambet@gmail.com> | 2008-11-18 13:04:21 +0200 |
commit | 157da2be755fbc954cf53f4ab9fc415139ea155c (patch) | |
tree | 3ddd7e6bc2ddaaf858bf02ea3d2fde13d526f170 /plugins/mm-plugin-sierra.h | |
parent | cf2344381ceabd9ac15bfea1ddd57c81a62b16da (diff) |
Implement plugin for Sierra Wireless modems.
For now, it only waits a bit after CFUN=1 call.
Diffstat (limited to 'plugins/mm-plugin-sierra.h')
-rw-r--r-- | plugins/mm-plugin-sierra.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/mm-plugin-sierra.h b/plugins/mm-plugin-sierra.h new file mode 100644 index 00000000..31334d1b --- /dev/null +++ b/plugins/mm-plugin-sierra.h @@ -0,0 +1,26 @@ +/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ + +#ifndef MM_PLUGIN_SIERRA_H +#define MM_PLUGIN_SIERRA_H + +#include "mm-plugin.h" +#include "mm-generic-gsm.h" + +#define MM_TYPE_PLUGIN_SIERRA (mm_plugin_sierra_get_type ()) +#define MM_PLUGIN_SIERRA(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_PLUGIN_SIERRA, MMPluginSierra)) +#define MM_PLUGIN_SIERRA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM_TYPE_PLUGIN_SIERRA, MMPluginSierraClass)) +#define MM_IS_PLUGIN_SIERRA(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_PLUGIN_SIERRA)) +#define MM_IS_PLUGIN_SIERRA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM_TYPE_PLUGIN_SIERRA)) +#define MM_PLUGIN_SIERRA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_PLUGIN_SIERRA, MMPluginSierraClass)) + +typedef struct { + GObject parent; +} MMPluginSierra; + +typedef struct { + GObjectClass parent; +} MMPluginSierraClass; + +GType mm_plugin_sierra_get_type (void); + +#endif /* MM_PLUGIN_SIERRA_H */ |