1 /******************************************************************************
2  *
3  *  Copyright (C) 2003-2012 Broadcom Corporation
4  *
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at:
8  *
9  *  http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  ******************************************************************************/
18 
19 /******************************************************************************
20  *
21  *  This is the public interface file for the object push (OP) client and
22  *  server subsystem of BTA, Broadcom's Bluetooth application layer for
23  *  mobile phones.
24  *
25  ******************************************************************************/
26 #ifndef BTA_OP_API_H
27 #define BTA_OP_API_H
28 
29 #include "bta_api.h"
30 
31 /*****************************************************************************
32 **  Constants and data types
33 *****************************************************************************/
34 /* Extra Debug Code */
35 #ifndef BTA_OPS_DEBUG
36 #define BTA_OPS_DEBUG           FALSE
37 #endif
38 
39 #ifndef BTA_OPC_DEBUG
40 #define BTA_OPC_DEBUG           FALSE
41 #endif
42 
43 
44 /* Object format */
45 #define BTA_OP_VCARD21_FMT          1       /* vCard 2.1 */
46 #define BTA_OP_VCARD30_FMT          2       /* vCard 3.0 */
47 #define BTA_OP_VCAL_FMT             3       /* vCal 1.0 */
48 #define BTA_OP_ICAL_FMT             4       /* iCal 2.0 */
49 #define BTA_OP_VNOTE_FMT            5       /* vNote */
50 #define BTA_OP_VMSG_FMT             6       /* vMessage */
51 #define BTA_OP_OTHER_FMT            0xFF    /* other format */
52 
53 typedef UINT8 tBTA_OP_FMT;
54 
55 /* Object format mask */
56 #define BTA_OP_VCARD21_MASK         0x01    /* vCard 2.1 */
57 #define BTA_OP_VCARD30_MASK         0x02    /* vCard 3.0 */
58 #define BTA_OP_VCAL_MASK            0x04    /* vCal 1.0 */
59 #define BTA_OP_ICAL_MASK            0x08    /* iCal 2.0 */
60 #define BTA_OP_VNOTE_MASK           0x10    /* vNote */
61 #define BTA_OP_VMSG_MASK            0x20    /* vMessage */
62 #define BTA_OP_ANY_MASK             0x40    /* Any type of object. */
63 
64 typedef UINT8 tBTA_OP_FMT_MASK;
65 
66 #endif /* BTA_OP_API_H */
67 
68