summaryrefslogtreecommitdiff
path: root/mbim-type.h
diff options
context:
space:
mode:
Diffstat (limited to 'mbim-type.h')
-rw-r--r--mbim-type.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/mbim-type.h b/mbim-type.h
new file mode 100644
index 0000000..d54d8a2
--- /dev/null
+++ b/mbim-type.h
@@ -0,0 +1,15 @@
+#ifndef _MBIM_TYPE_H__
+#define _MBIM_TYPE_H__
+
+struct mbim_string {
+ uint32_t offset;
+ uint32_t length;
+};
+
+struct mbim_enum {
+ uint32_t key;
+ char *skey;
+ char *val;
+};
+
+#endif