X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=bt-oal%2Fhardware%2Fbt_gatt.h;h=342066dd2dcbc7401df8e342f3314ae40de25df8;hb=cdb0a76b987d717fdd61a4b5d5c022cafbd0ba9e;hp=42e14c2f15e4832dcf5388cd758da4d5e7bd6c72;hpb=03548067142482d5cd5968f8342b36b2074ec0a9;p=platform%2Fcore%2Fconnectivity%2Fbluetooth-frwk.git diff --git a/bt-oal/hardware/bt_gatt.h b/bt-oal/hardware/bt_gatt.h index 42e14c2..342066d 100644 --- a/bt-oal/hardware/bt_gatt.h +++ b/bt-oal/hardware/bt_gatt.h @@ -26,34 +26,34 @@ __BEGIN_DECLS /** BT-GATT callbacks */ typedef struct { - /** Set to sizeof(btgatt_callbacks_t) */ - size_t size; + /** Set to sizeof(btgatt_callbacks_t) */ + size_t size; - /** GATT Client callbacks */ - const btgatt_client_callbacks_t* client; + /** GATT Client callbacks */ + const btgatt_client_callbacks_t* client; - /** GATT Server callbacks */ - const btgatt_server_callbacks_t* server; + /** GATT Server callbacks */ + const btgatt_server_callbacks_t* server; } btgatt_callbacks_t; /** Represents the standard Bluetooth GATT interface. */ typedef struct { - /** Set to sizeof(btgatt_interface_t) */ - size_t size; + /** Set to sizeof(btgatt_interface_t) */ + size_t size; - /** - * Initializes the interface and provides callback routines - */ - bt_status_t (*init)( const btgatt_callbacks_t* callbacks ); + /** + * Initializes the interface and provides callback routines + */ + bt_status_t (*init)(const btgatt_callbacks_t* callbacks); - /** Closes the interface */ - void (*cleanup)( void ); + /** Closes the interface */ + void (*cleanup)(void); - /** Pointer to the GATT client interface methods.*/ - const btgatt_client_interface_t* client; + /** Pointer to the GATT client interface methods.*/ + const btgatt_client_interface_t* client; - /** Pointer to the GATT server interface methods.*/ - const btgatt_server_interface_t* server; + /** Pointer to the GATT server interface methods.*/ + const btgatt_server_interface_t* server; } btgatt_interface_t; __END_DECLS