~binli/ubuntu/vivid/modemmanager/lp1441095

« back to all changes in this revision

Viewing changes to plugins/mtk/mm-plugin-mtk.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Guido Günther, Michael Biebl
  • Date: 2014-06-25 02:23:09 UTC
  • mfrom: (20.2.2 sid)
  • Revision ID: package-import@ubuntu.com-20140625022309-43papaenj5ikbx3y
Tags: 1.2.0-1
[ Guido Günther ]
* New upstream version 1.2.0 (Closes: #731851)
* Update patches
* Install locale files
* Require newer libqmi
* Update symbols file
* Ship gobject introspection data
* Ship vala bindings

[ Michael Biebl ]
* Use canonical URI for Vcs-Git
* Use gir dh addon
* Update extendend package description (Closes: #744180)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 - 2012 Red Hat, Inc.
 
15
 * Copyright (C) 2012 Aleksander Morgado <aleksander@gnu.org>
 
16
 */
 
17
 
 
18
#ifndef MM_PLUGIN_MTK_H
 
19
#define MM_PLUGIN_MTK_H
 
20
 
 
21
#include "mm-plugin.h"
 
22
 
 
23
#define MM_TYPE_PLUGIN_MTK            (mm_plugin_mtk_get_type ())
 
24
#define MM_PLUGIN_MTK(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_PLUGIN_MTK, MMPluginMtk))
 
25
#define MM_PLUGIN_MTK_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),  MM_TYPE_PLUGIN_MTK, MMPluginMtkClass))
 
26
#define MM_IS_PLUGIN_MTK(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_PLUGIN_MTK))
 
27
#define MM_IS_PLUGIN_MTK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),  MM_TYPE_PLUGIN_MTK))
 
28
#define MM_PLUGIN_MTK_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),  MM_TYPE_PLUGIN_MTK, MMPluginMtkClass))
 
29
 
 
30
typedef struct {
 
31
    MMPlugin parent;
 
32
} MMPluginMtk;
 
33
 
 
34
typedef struct {
 
35
    MMPluginClass parent;
 
36
} MMPluginMtkClass;
 
37
 
 
38
GType mm_plugin_mtk_get_type (void);
 
39
 
 
40
G_MODULE_EXPORT MMPlugin *mm_plugin_create (void);
 
41
 
 
42
#endif /* MM_PLUGIN_MTK_H */