1 /****************************************************************************
2 **
3 ** Name:         vendor_api.h
4 **
5 ** Description:  Vendor specific BTE API function external definitions.
6 **
7 ** Copyright (c) 2009-2011, BROADCOM Inc., All Rights Reserved.
8 ** Broadcom Bluetooth Core. Proprietary and confidential.
9 **
10 ******************************************************************************/
11 #ifndef VENDOR_API_H
12 #define VENDOR_API_H
13 
14 #include "bt_types.h"
15 #include "btm_api.h"
16 
17 /****************************************************************************
18 **  Resolvable private address offload VSC specific definitions
19 ******************************************************************************/
20 
21 enum
22 {
23     BTM_BLE_PRIVACY_ENABLE,
24     BTM_BLE_PRIVACY_DISABLE
25 };
26 
27 
28 /****************************************************************************
29 **  Advertising packet filter VSC specific definitions
30 ******************************************************************************/
31 
32 
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
38 /*****************************************************************************
39 **              VENDOR SPECIFIC BLE FEATURE FUNCTIONS
40 ******************************************************************************/
41 #if BLE_ANDROID_CONTROLLER_SCAN_FILTER == TRUE
42 
43 #endif
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif
50