summaryrefslogtreecommitdiffabout
path: root/gammu/emb/common/phone/obex/obexgen.h
Unidiff
Diffstat (limited to 'gammu/emb/common/phone/obex/obexgen.h') (more/less context) (show whitespace changes)
-rw-r--r--gammu/emb/common/phone/obex/obexgen.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/gammu/emb/common/phone/obex/obexgen.h b/gammu/emb/common/phone/obex/obexgen.h
new file mode 100644
index 0000000..466fef5
--- a/dev/null
+++ b/gammu/emb/common/phone/obex/obexgen.h
@@ -0,0 +1,38 @@
1/* (c) 2003 by Marcin Wiacek */
2
3#ifndef obexgen_h
4#define obexgen_h
5
6#include "../../gsmcomon.h"
7#include "../../gsmstate.h"
8#include "../../service/gsmmisc.h"
9#include "../../service/sms/gsmsms.h"
10
11#ifndef GSM_USED_IRDAOBEX
12# define GSM_USED_IRDAOBEX
13#endif
14#ifndef GSM_USED_BLUEOBEX
15# define GSM_USED_BLUEOBEX
16#endif
17
18typedef enum {
19 OBEX_None = 1,
20 OBEX_BrowsingFolders
21} OBEX_Service;
22
23typedef struct {
24 int FileLev;
25 int FilesLocationsUsed;
26 int FilesLocationsCurrent;
27 GSM_File Files[500];
28 bool FileLastPart;
29
30 int FrameSize;
31 OBEX_Service Service;
32} GSM_Phone_OBEXGENData;
33
34#endif
35
36/* How should editor hadle tabs in this file? Add editor commands here.
37 * vim: noexpandtab sw=8 ts=8 sts=8:
38 */