1/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18#ifndef ANDROID_INCLUDE_BT_GATT_TYPES_H
19#define ANDROID_INCLUDE_BT_GATT_TYPES_H
20
21#include <stdint.h>
22#include <stdbool.h>
23
24__BEGIN_DECLS
25
26/**
27 * GATT Service types
28 */
29#define BTGATT_SERVICE_TYPE_PRIMARY 0
30#define BTGATT_SERVICE_TYPE_SECONDARY 1
31
32/** GATT ID adding instance id tracking to the UUID */
33typedef struct
34{
35    bt_uuid_t           uuid;
36    uint8_t             inst_id;
37} btgatt_gatt_id_t;
38
39/** GATT Service ID also identifies the service type (primary/secondary) */
40typedef struct
41{
42    btgatt_gatt_id_t    id;
43    uint8_t             is_primary;
44} btgatt_srvc_id_t;
45
46__END_DECLS
47
48#endif /* ANDROID_INCLUDE_BT_GATT_TYPES_H */
49