blob: 476d55a7d0ac137e42139b48425d1aa30da642a1 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/*****************************************************************************
**
** Name: goep_int.h
**
** File: Generic Object Exchange Profile Internal Definitions
**
** Copyright (c) 2000-2004, WIDCOMM Inc., All Rights Reserved.
** WIDCOMM Bluetooth Core. Proprietary and confidential.
**
*****************************************************************************/
#ifndef GOEP_INT_H
#define GOEP_INT_H
#include "bt_target.h"
#include "goep_util.h"
/*****************************************************************************
** Constants
*****************************************************************************/
#define GOEP_PROTOCOL_COUNT 3
/*****************************************************************************
** Main Control Block Structure
*****************************************************************************/
typedef struct
{
UINT8 trace_level;
} tGOEP_CB;
/*****************************************************************************
** Function Prototypes
*****************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
#if GOEP_DYNAMIC_MEMORY == FALSE
GOEP_API extern tGOEP_CB goep_cb;
#else
GOEP_API extern tGOEP_CB *goep_cb_ptr;
#define goep_cb (*goep_cb_ptr)
#endif
#ifdef __cplusplus
}
#endif
#endif /* GOEP_INT_H */
|