summaryrefslogtreecommitdiff
path: root/mbim-dev.h
diff options
context:
space:
mode:
Diffstat (limited to 'mbim-dev.h')
-rw-r--r--mbim-dev.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/mbim-dev.h b/mbim-dev.h
index 1499630..b7a253c 100644
--- a/mbim-dev.h
+++ b/mbim-dev.h
@@ -15,10 +15,12 @@
#ifndef _MBIM_DEV_H__
#define _MBIM_DEV_H__
-extern uint8_t mbim_buffer[MBIM_BUFFER_SIZE];
+extern size_t mbim_bufsize;
+extern uint8_t *mbim_buffer;
extern int no_close;
int mbim_send(void);
void mbim_open(const char *path);
+void mbim_end(void);
#endif