summaryrefslogtreecommitdiff
path: root/mbim.h
blob: d76892aa62b86b772a8af7008b614efb90f35d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef _MBIM_H__
#define _MBIM_H__

#include <stdint.h>
#include <sys/types.h>

#define MBIM_BUFFER_SIZE	1024

extern int return_code;
extern int verbose;

#include "mbim-type.h"
#include "mbim-enum.h"
#include "mbim-enums.h"
#include "mbim-msg.h"
#include "mbim-cid.h"
#include "mbim-dev.h"

struct mbim_handler {
	char *name;
	int argc;

	_mbim_cmd_request request;
	_mbim_cmd_response response;
};
extern struct mbim_handler *current_handler;

#endif