diff options
Diffstat (limited to 'stack/goep/goep_int.h')
-rw-r--r-- | stack/goep/goep_int.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/stack/goep/goep_int.h b/stack/goep/goep_int.h new file mode 100644 index 0000000..476d55a --- /dev/null +++ b/stack/goep/goep_int.h @@ -0,0 +1,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 */ |