summaryrefslogtreecommitdiff
path: root/plugins/dell/mm-broadband-modem-dell-dw5821e.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dell/mm-broadband-modem-dell-dw5821e.h')
-rw-r--r--plugins/dell/mm-broadband-modem-dell-dw5821e.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/plugins/dell/mm-broadband-modem-dell-dw5821e.h b/plugins/dell/mm-broadband-modem-dell-dw5821e.h
new file mode 100644
index 000000000..6903a4eb7
--- /dev/null
+++ b/plugins/dell/mm-broadband-modem-dell-dw5821e.h
@@ -0,0 +1,49 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details:
+ *
+ * Copyright (C) 2018 Aleksander Morgado <aleksander@aleksander.es>
+ */
+
+#ifndef MM_BROADBAND_MODEM_DELL_DW5821E_H
+#define MM_BROADBAND_MODEM_DELL_DW5821E_H
+
+#include "mm-broadband-modem-mbim.h"
+
+#define MM_TYPE_BROADBAND_MODEM_DELL_DW5821E (mm_broadband_modem_dell_dw5821e_get_type ())
+#define MM_BROADBAND_MODEM_DELL_DW5821E(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_BROADBAND_MODEM_DELL_DW5821E, MMBroadbandModemDellDw5821e))
+#define MM_BROADBAND_MODEM_DELL_DW5821E_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM_TYPE_BROADBAND_MODEM_DELL_DW5821E, MMBroadbandModemDellDw5821eClass))
+#define MM_IS_BROADBAND_MODEM_DELL_DW5821E(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_BROADBAND_MODEM_DELL_DW5821E))
+#define MM_IS_BROADBAND_MODEM_DELL_DW5821E_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM_TYPE_BROADBAND_MODEM_DELL_DW5821E))
+#define MM_BROADBAND_MODEM_DELL_DW5821E_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_BROADBAND_MODEM_DELL_DW5821E, MMBroadbandModemDellDw5821eClass))
+
+typedef struct _MMBroadbandModemDellDw5821e MMBroadbandModemDellDw5821e;
+typedef struct _MMBroadbandModemDellDw5821eClass MMBroadbandModemDellDw5821eClass;
+typedef struct _MMBroadbandModemDellDw5821ePrivate MMBroadbandModemDellDw5821ePrivate;
+
+struct _MMBroadbandModemDellDw5821e {
+ MMBroadbandModemMbim parent;
+ MMBroadbandModemDellDw5821ePrivate *priv;
+};
+
+struct _MMBroadbandModemDellDw5821eClass{
+ MMBroadbandModemMbimClass parent;
+};
+
+GType mm_broadband_modem_dell_dw5821e_get_type (void);
+
+MMBroadbandModemDellDw5821e *mm_broadband_modem_dell_dw5821e_new (const gchar *device,
+ const gchar **driver,
+ const gchar *plugin,
+ guint16 vendor_id,
+ guint16 product_id);
+
+#endif /* MM_BROADBAND_MODEM_DELL_DW5821E_H */