bta_op_api.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /******************************************************************************
  2. *
  3. * Copyright 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. * This is the public interface file for the object push (OP) client and
  21. * server subsystem of BTA, Broadcom's Bluetooth application layer for
  22. * mobile phones.
  23. *
  24. ******************************************************************************/
  25. #ifndef BTA_OP_API_H
  26. #define BTA_OP_API_H
  27. #include "bta_api.h"
  28. /*****************************************************************************
  29. * Constants and data types
  30. ****************************************************************************/
  31. /* Extra Debug Code */
  32. #ifndef BTA_OPS_DEBUG
  33. #define BTA_OPS_DEBUG false
  34. #endif
  35. #ifndef BTA_OPC_DEBUG
  36. #define BTA_OPC_DEBUG false
  37. #endif
  38. /* Object format */
  39. #define BTA_OP_VCARD21_FMT 1 /* vCard 2.1 */
  40. #define BTA_OP_VCARD30_FMT 2 /* vCard 3.0 */
  41. #define BTA_OP_VCAL_FMT 3 /* vCal 1.0 */
  42. #define BTA_OP_ICAL_FMT 4 /* iCal 2.0 */
  43. #define BTA_OP_VNOTE_FMT 5 /* vNote */
  44. #define BTA_OP_VMSG_FMT 6 /* vMessage */
  45. #define BTA_OP_OTHER_FMT 0xFF /* other format */
  46. typedef uint8_t tBTA_OP_FMT;
  47. /* Object format mask */
  48. #define BTA_OP_VCARD21_MASK 0x01 /* vCard 2.1 */
  49. #define BTA_OP_VCARD30_MASK 0x02 /* vCard 3.0 */
  50. #define BTA_OP_VCAL_MASK 0x04 /* vCal 1.0 */
  51. #define BTA_OP_ICAL_MASK 0x08 /* iCal 2.0 */
  52. #define BTA_OP_VNOTE_MASK 0x10 /* vNote */
  53. #define BTA_OP_VMSG_MASK 0x20 /* vMessage */
  54. #define BTA_OP_ANY_MASK 0x40 /* Any type of object. */
  55. typedef uint8_t tBTA_OP_FMT_MASK;
  56. #endif /* BTA_OP_API_H */