| /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
| /* |
| * libqmi-glib -- GLib/GIO based library to control QMI devices |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2 of the License, or (at your option) any later version. |
| * |
| * This library 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 |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with this library; if not, write to the |
| * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| * Boston, MA 02110-1301 USA. |
| * |
| * Copyright (C) 2020 Eric Caruso <ejcaruso@chromium.org> |
| * Copyright (C) 2020 Andrew Lassalle <andrewlassalle@chromium.org> |
| */ |
| |
| #ifndef _LIBQMI_GLIB_QMI_NET_PORT_MANAGER_RMNET_H_ |
| #define _LIBQMI_GLIB_QMI_NET_PORT_MANAGER_RMNET_H_ |
| |
| #include <gio/gio.h> |
| #include <glib-object.h> |
| |
| #include "qmi-net-port-manager.h" |
| |
| #define QMI_TYPE_NET_PORT_MANAGER_RMNET (qmi_net_port_manager_rmnet_get_type ()) |
| #define QMI_NET_PORT_MANAGER_RMNET(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), QMI_TYPE_NET_PORT_MANAGER_RMNET, QmiNetPortManagerRmnet)) |
| #define QMI_NET_PORT_MANAGER_RMNET_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), QMI_TYPE_NET_PORT_MANAGER_RMNET, QmiNetPortManagerRmnetClass)) |
| #define QMI_IS_NET_PORT_MANAGER_RMNET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), QMI_TYPE_NET_PORT_MANAGER_RMNET)) |
| #define QMI_IS_NET_PORT_MANAGER_RMNET_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), QMI_TYPE_NET_PORT_MANAGER_RMNET)) |
| #define QMI_NET_PORT_MANAGER_RMNET_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), QMI_TYPE_NET_PORT_MANAGER_RMNET, QmiNetPortManagerRmnetClass)) |
| |
| typedef struct _QmiNetPortManagerRmnet QmiNetPortManagerRmnet; |
| typedef struct _QmiNetPortManagerRmnetClass QmiNetPortManagerRmnetClass; |
| typedef struct _QmiNetPortManagerRmnetPrivate QmiNetPortManagerRmnetPrivate; |
| |
| struct _QmiNetPortManagerRmnet { |
| QmiNetPortManager parent; |
| QmiNetPortManagerRmnetPrivate *priv; |
| }; |
| |
| struct _QmiNetPortManagerRmnetClass { |
| QmiNetPortManagerClass parent; |
| }; |
| |
| GType qmi_net_port_manager_rmnet_get_type (void); |
| G_DEFINE_AUTOPTR_CLEANUP_FUNC (QmiNetPortManagerRmnet, g_object_unref) |
| |
| QmiNetPortManagerRmnet *qmi_net_port_manager_rmnet_new (GError **error); |
| |
| #endif /* _LIBQMI_GLIB_QMI_NET_PORT_MANAGER_RMNET_H_ */ |