summaryrefslogtreecommitdiff
path: root/src/mbimcli/mbimcli.h
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2013-12-10 19:42:22 +0100
committerAleksander Morgado <aleksander@lanedo.com>2013-12-10 21:24:56 +0100
commit6b9f19c7a18c766f5afe7aded03dd77443920aa6 (patch)
treec038376e69ae1c91f03adc3c7e2acf4b53076d08 /src/mbimcli/mbimcli.h
parentbe4bc12a1c5a4855d0ab7d1ad465433ed3e33c09 (diff)
downloadlibmbim-6b9f19c7a18c766f5afe7aded03dd77443920aa6.tar.gz
build: move source code under src/
Diffstat (limited to 'src/mbimcli/mbimcli.h')
-rw-r--r--src/mbimcli/mbimcli.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/mbimcli/mbimcli.h b/src/mbimcli/mbimcli.h
new file mode 100644
index 0000000..411b776
--- /dev/null
+++ b/src/mbimcli/mbimcli.h
@@ -0,0 +1,39 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * mbimcli -- Command line interface to control MBIM devices
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Copyright (C) 2013 Aleksander Morgado <aleksander@gnu.org>
+ */
+
+#include <glib.h>
+
+#ifndef __MBIMCLI_H__
+#define __MBIMCLI_H__
+
+/* Common */
+void mbimcli_async_operation_done (gboolean operation_status);
+
+/* Basic Connect group */
+GOptionGroup *mbimcli_basic_connect_get_option_group (void);
+GOptionGroup *mbimcli_phonebook_get_option_group (void);
+gboolean mbimcli_basic_connect_options_enabled (void);
+gboolean mbimcli_phonebook_options_enabled (void);
+void mbimcli_basic_connect_run (MbimDevice *device,
+ GCancellable *cancellable);
+void mbimcli_phonebook_run (MbimDevice *device,
+ GCancellable *cancellable);
+
+#endif /* __MBIMCLI_H__ */