blob: 466fef50d0fe60ee33badf03f7daebba78a3c69f (
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
29
30
31
32
33
34
35
36
37
38
|
/* (c) 2003 by Marcin Wiacek */
#ifndef obexgen_h
#define obexgen_h
#include "../../gsmcomon.h"
#include "../../gsmstate.h"
#include "../../service/gsmmisc.h"
#include "../../service/sms/gsmsms.h"
#ifndef GSM_USED_IRDAOBEX
# define GSM_USED_IRDAOBEX
#endif
#ifndef GSM_USED_BLUEOBEX
# define GSM_USED_BLUEOBEX
#endif
typedef enum {
OBEX_None = 1,
OBEX_BrowsingFolders
} OBEX_Service;
typedef struct {
int FileLev;
int FilesLocationsUsed;
int FilesLocationsCurrent;
GSM_File Files[500];
bool FileLastPart;
int FrameSize;
OBEX_Service Service;
} GSM_Phone_OBEXGENData;
#endif
/* How should editor hadle tabs in this file? Add editor commands here.
* vim: noexpandtab sw=8 ts=8 sts=8:
*/
|