[Bluetooth] Add BluetoothHidDevice APIs (#574)
[platform/core/csapi/tizenfx.git] / src / Tizen.Network.Bluetooth / Interop / Interop.Bluetooth.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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 using System;
18 using Tizen.Network.Bluetooth;
19 using System.Runtime.InteropServices;
20
21 internal static partial class Interop
22 {
23     internal static partial class Bluetooth
24     {
25         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
26         internal delegate void StateChangedCallback(int result, int state, IntPtr userData);
27
28         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
29         internal delegate void NameChangedCallback(string deviceName, IntPtr userData);
30
31         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
32         internal delegate void VisibilityModeChangedCallback(int result, int visibility, IntPtr userData);
33
34         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
35         internal delegate void VisibilityDurationChangedCallback(int duration, IntPtr userData);
36
37         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
38         internal delegate void DiscoveryStateChangedCallback(int result, BluetoothDeviceDiscoveryState state, IntPtr deviceInfo, IntPtr userData);
39
40         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
41         internal delegate bool BondedDeviceCallback([MarshalAs(UnmanagedType.Struct)]ref BluetoothDeviceStruct device, IntPtr userData);
42
43         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
44         internal delegate void BondCreatedCallback(int result, [MarshalAs(UnmanagedType.Struct)]ref BluetoothDeviceStruct device, IntPtr userData);
45         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
46         internal delegate void BondDestroyedCallback(int result, string deviceAddress, IntPtr userData);
47         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
48         internal delegate void AuthorizationChangedCallback(int authorization, string deviceAddress, IntPtr userData);
49         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
50         internal delegate void ServiceSearchedCallback(int result, [MarshalAs(UnmanagedType.Struct)]ref BluetoothDeviceSdpStruct sdp, IntPtr userData);
51         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
52         internal delegate void DeviceConnectionStateChangedCallback(bool connected, [MarshalAs(UnmanagedType.Struct)]ref BluetoothDeviceConnectionStruct device, IntPtr userData);
53         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
54         internal delegate bool ConnectedProfileCallback(int profile, IntPtr userData);
55
56         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
57         internal delegate void DataReceivedCallback([MarshalAs(UnmanagedType.Struct)]ref SocketDataStruct socketData, IntPtr userData);
58         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
59         internal delegate void SocketConnectionStateChangedCallback(int result, BluetoothSocketState connectionState, [MarshalAs(UnmanagedType.Struct)]ref SocketConnectionStruct socketConnection, IntPtr userData);
60
61         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
62         internal delegate void AudioConnectionStateChangedCallback(int result, bool connected, string deviceAddress, int profileType, IntPtr userData);
63
64         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
65         internal delegate void ConnectionRequestedCallback(string deviceAddress, IntPtr userData);
66         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
67         internal delegate void PushRequestedCallback(string file, long size, IntPtr userData);
68
69         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
70         internal delegate void TransferProgressCallback(string file, long size, int percent, IntPtr userData);
71         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
72         internal delegate void TransferFinishedCallback(int result, string file, long size, IntPtr userData);
73
74         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
75         internal delegate void PushRespondedCallback(int result, string deviceAddress, IntPtr userData);
76         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
77         internal delegate void PushProgressCallback(string file, long size, int percent, IntPtr userData);
78         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
79         internal delegate void PushFinishedCallback(int result, string deviceAddress, IntPtr userData);
80
81         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
82         internal delegate void TargetConnectionStateChangedCallback(bool connected, string deviceAddress, IntPtr userData);
83         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
84         internal delegate void EqualizerStateChangedCallback(int equalizer, IntPtr userData);
85         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
86         internal delegate void RepeatModeChangedCallback(int repeat, IntPtr userData);
87         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
88         internal delegate void ShuffleModeChangedCallback(int shuffle, IntPtr userData);
89         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
90         internal delegate void ScanModeChangedCallback(int scan, IntPtr userData);
91
92         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
93         internal delegate void ConnectionChangedCallback(int result, bool connected, string deviceAddress, IntPtr userData);
94         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
95         internal delegate void ClientCharacteristicValueChangedCallback(IntPtr characteristicHandle, string value, int len, IntPtr userData);
96         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
97         internal delegate void GattClientRequestedCallback(int result, IntPtr handle, IntPtr userData);
98         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
99         internal delegate bool GattForEachCallback(int total, int index, IntPtr handle, IntPtr userData);
100
101         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_initialize")]
102         internal static extern int Initialize();
103         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_deinitialize")]
104         internal static extern int Deinitialize();
105
106         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_get_name")]
107         internal static extern int GetName(out string name);
108         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_set_name")]
109         internal static extern int SetName(string name);
110
111         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_get_state")]
112         internal static extern int GetState(out BluetoothState isActivated);
113         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_get_address")]
114         internal static extern int GetAddress(out string address);
115
116         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_get_visibility")]
117         internal static extern int GetVisibility(out int visibility, out int duration);
118
119         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_is_discovering")]
120         internal static extern int IsDiscovering(out bool isDiscovering);
121
122         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_start_device_discovery")]
123         internal static extern int StartDiscovery();
124         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_stop_device_discovery")]
125         internal static extern int StopDiscovery();
126
127         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_foreach_bonded_device")]
128         internal static extern int GetBondedDevices(BondedDeviceCallback bondedDeviceCb, IntPtr userData);
129
130         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_get_bonded_device_info")]
131         internal static extern int GetBondedDeviceByAddress(string deviceAddress, out IntPtr deviceInfo);
132         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_free_device_info")]
133         internal static extern int FreeDeviceInfo(BluetoothDeviceStruct deviceInfo);
134
135         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_is_service_used")]
136         internal static extern int IsServiceUsed(string serviceUuid, out bool used);
137
138         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_get_local_oob_data")]
139         internal static extern int GetOobData(out IntPtr hash, out IntPtr randomizer, out int hashLen, out int randomizerLen);
140         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_set_remote_oob_data")]
141         internal static extern int SetOobData(string deviceAddress, IntPtr hash, IntPtr randomizer, int hashLen, int randomizerLen);
142         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_remove_remote_oob_data")]
143         internal static extern int RemoveOobData(string deviceAddress);
144
145         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_set_state_changed_cb")]
146         internal static extern int SetStateChangedCallback(StateChangedCallback stateChangedCb, IntPtr userData);
147         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_unset_state_changed_cb")]
148         internal static extern int UnsetStateChangedCallback();
149
150         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_set_name_changed_cb")]
151         internal static extern int SetNameChangedCallback(NameChangedCallback nameChangedCb, IntPtr userData);
152         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_unset_name_changed_cb")]
153         internal static extern int UnsetNameChangedCallback();
154
155         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_set_visibility_mode_changed_cb")]
156         internal static extern int SetVisibilityModeChangedCallback(VisibilityModeChangedCallback visibilityChangedCb, IntPtr userData);
157         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_unset_visibility_mode_changed_cb")]
158         internal static extern int UnsetVisibilityModeChangedCallback();
159
160         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_set_visibility_duration_changed_cb")]
161         internal static extern int SetVisibilityDurationChangedCallback(VisibilityDurationChangedCallback durationChangedCb, IntPtr userData);
162         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_unset_visibility_duration_changed_cb")]
163         internal static extern int UnsetVisibilityDurationChangedCallback();
164
165         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_set_device_discovery_state_changed_cb")]
166         internal static extern int SetDiscoveryStateChangedCallback(DiscoveryStateChangedCallback discoveryChangedCb, IntPtr userData);
167         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_unset_device_discovery_state_changed_cb")]
168         internal static extern int UnsetDiscoveryStateChangedCallback();
169
170         //Bluetooth Device
171         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_create_bond")]
172         internal static extern int CreateBond(string deviceAddress);
173         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_destroy_bond")]
174         internal static extern int DestroyBond(string deviceAddress);
175         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_cancel_bonding")]
176         internal static extern int CancelBonding();
177
178         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_set_alias")]
179         internal static extern int SetAlias(string deviceAddress, string alias);
180         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_set_authorization")]
181         internal static extern int SetAuthorization(string deviceAddress, int state);
182
183         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_get_service_mask_from_uuid_list")]
184         internal static extern int GetMaskFromUuid([MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPStr, SizeParamIndex = 1)] string[] uuids, int count, out BluetoothServiceClassType serviceMask);
185
186         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_start_service_search")]
187         internal static extern int StartServiceSearch(string deviceAddress);
188
189         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_foreach_connected_profiles")]
190         internal static extern int GetConnectedProfiles(string deviceAddress, ConnectedProfileCallback connectedProfileCb, IntPtr userData);
191         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_is_profile_connected")]
192         internal static extern int IsProfileConnected(string deviceAddress, int profile, out bool connectionStatus);
193
194         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_set_bond_created_cb")]
195         internal static extern int SetBondCreatedCallback(BondCreatedCallback bondCreatedCb, IntPtr userData);
196         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_unset_bond_created_cb")]
197         internal static extern int UnsetBondCreatedCallback();
198
199         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_set_bond_destroyed_cb")]
200         internal static extern int SetBondDestroyedCallback(BondDestroyedCallback bondDestroyedCb, IntPtr userData);
201         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_unset_bond_destroyed_cb")]
202         internal static extern int UnsetBondDestroyedCallback();
203
204         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_set_authorization_changed_cb")]
205         internal static extern int SetAuthorizationChangedCallback(AuthorizationChangedCallback authorizationChangedCb, IntPtr userData);
206         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_unset_authorization_changed_cb")]
207         internal static extern int UnsetAuthorizationChangedCallback();
208
209         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_set_service_searched_cb")]
210         internal static extern int SetServiceSearchedCallback(ServiceSearchedCallback serviceSearchedCb, IntPtr userData);
211         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_unset_service_searched_cb")]
212         internal static extern int UnsetServiceSearchedCallback();
213
214         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_set_connection_state_changed_cb")]
215         internal static extern int SetConnectionStateChangedCallback(DeviceConnectionStateChangedCallback connectionChangedCb, IntPtr userData);
216         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_device_unset_connection_state_changed_cb")]
217         internal static extern int UnsetConnectionStateChangedCallback();
218
219         // Bluetooth LE Adapter
220
221         //Callback for event
222         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
223         internal delegate void AdapterLeScanResultChangedCallBack(int result,
224             [MarshalAs(UnmanagedType.Struct)]ref BluetoothLeScanDataStruct scanData, IntPtr userData);
225
226         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
227         public delegate void AdvertisingStateChangedCallBack(int result, IntPtr advertiserHandle,
228                             BluetoothLeAdvertisingState advertisingState, IntPtr userData);
229
230         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
231         public delegate void GattConnectionStateChangedCallBack(int result, bool connected,
232                                         string remoteAddress, IntPtr userData);
233
234         //Bluetooth Le Adapter Apis
235         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_start_scan")]
236         public static extern int StartScan(AdapterLeScanResultChangedCallBack callback, IntPtr userData);
237
238         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_stop_scan")]
239         public static extern int StopScan();
240
241         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_get_scan_result_service_uuids")]
242         public static extern int GetScanResultServiceUuid(ref BluetoothLeScanDataStruct scanData,
243             BluetoothLePacketType packetType, ref IntPtr uuids, ref int count);
244
245         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_get_scan_result_device_name")]
246         public static extern int GetLeScanResultDeviceName(ref BluetoothLeScanDataStruct scanData,
247                             BluetoothLePacketType packetType, out string deviceName);
248
249         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_get_scan_result_tx_power_level")]
250         public static extern int GetScanResultTxPowerLevel(ref BluetoothLeScanDataStruct scanData,
251                             BluetoothLePacketType packetType, out int txPowerLevel);
252
253         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_get_scan_result_service_solicitation_uuids")]
254         public static extern int GetScaResultSvcSolicitationUuids(ref BluetoothLeScanDataStruct scanData,
255                             BluetoothLePacketType packetType, out IntPtr uuids, out int count);
256
257         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_get_scan_result_service_data_list")]
258         public static extern int GetScanResultServiceDataList(ref BluetoothLeScanDataStruct scanData,
259                             BluetoothLePacketType PacketType, out IntPtr serviceDataArray, out int count);
260
261         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_free_service_data_list")]
262         public static extern int FreeServiceDataList(IntPtr serviceData, int count);
263
264         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_get_scan_result_appearance")]
265         public static extern int GetScanResultAppearance(ref BluetoothLeScanDataStruct scanData,
266                             BluetoothLePacketType packetType, out int appearance);
267
268         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_get_scan_result_manufacturer_data")]
269         public static extern int GetScanResultManufacturerData(ref BluetoothLeScanDataStruct scanData,
270                             BluetoothLePacketType packetType, out int manufId, out IntPtr manufData,
271                             out int manufDataLength);
272
273         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_connect")]
274         internal static extern int GattConnect(string deviceAddress, bool autoConnect);
275
276         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_disconnect")]
277         internal static extern int GattDisconnect(string deviceAddress);
278
279         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_set_connection_state_changed_cb")]
280         internal static extern int SetGattConnectionStateChangedCallback(
281             GattConnectionStateChangedCallBack gattConnectionChangedCb, IntPtr userData);
282
283         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_unset_connection_state_changed_cb")]
284         internal static extern int UnsetGattConnectionStateChangedCallback();
285
286         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_create_advertiser")]
287         public static extern int CreateAdvertiser(out IntPtr advertiserHandle);
288
289         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_destroy_advertiser")]
290         public static extern int DestroyAdvertiser(IntPtr advertiserHandle);
291
292         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_add_advertising_service_uuid")]
293         public static extern int AddAdvertisingServiceUuid(IntPtr advertiserHandle,
294                                     BluetoothLePacketType PacketType, string uuid);
295
296         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_add_advertising_service_solicitation_uuid")]
297         public static extern int AddAdvertisingServiceSolicitationUuid(IntPtr advertiserHandle,
298             BluetoothLePacketType PacketType, string uuid);
299
300         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_add_advertising_service_data")]
301         public static extern int AddAdvertisingServiceData(IntPtr advertiserHandle,
302             BluetoothLePacketType PacketType, string uuid, IntPtr serviceData, int serviceDatalength);
303
304         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_set_advertising_appearance")]
305         public static extern int SetAdvertisingAppearance(IntPtr advertiserHandle,
306                                     BluetoothLePacketType packetType, int appearance);
307
308         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_add_advertising_manufacturer_data")]
309         public static extern int AddAdvertisingManufData(IntPtr advertiserHandle, BluetoothLePacketType packetType,
310             int manufId, IntPtr manufData, int manufacturerDataLength);
311
312         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_set_advertising_device_name")]
313         public static extern int SetAdvertisingDeviceName(IntPtr advertiserHandle, BluetoothLePacketType packetType,
314                                                 bool includeName);
315
316         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_set_advertising_tx_power_level")]
317         public static extern int SetAdvertisingTxPowerLevel(IntPtr advertiserHandle, BluetoothLePacketType packetType,
318                                                 bool includePowerLevel);
319
320         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_clear_advertising_data")]
321         public static extern int ClearAdvertisingData(IntPtr advertiserHandle, BluetoothLePacketType packetType);
322
323         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_start_advertising_new")]
324         public static extern int BluetoothLeStartAdvertising(IntPtr advertiserHandle,
325                                          AdvertisingStateChangedCallBack callback, IntPtr userData);
326
327         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_stop_advertising")]
328         public static extern int BluetoothLeStopAdvertising(IntPtr advertiserHandle);
329
330         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_set_advertising_mode")]
331         public static extern int SetAdvertisingMode(IntPtr advertiserHandle,
332                                         BluetoothLeAdvertisingMode advertisingMode);
333
334         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_adapter_le_set_advertising_connectable")]
335         public static extern int SetAdvertisingConnectable(IntPtr advertiserHandle,
336                                         bool connectable);
337
338         //Bluetooth Socket
339         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_create_rfcomm")]
340         internal static extern int CreateServerSocket(string serviceUuid, out int socketFd);
341         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_destroy_rfcomm")]
342         internal static extern int DestroyServerSocket(int socketFd);
343         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_listen_and_accept_rfcomm")]
344         internal static extern int Listen(int socketFd, int pendingConnections);
345         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_connect_rfcomm")]
346         internal static extern int ConnectSocket(string address, string serviceUuid);
347         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_disconnect_rfcomm")]
348         internal static extern int DisconnectSocket(int socketFd);
349         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_send_data")]
350         internal static extern int SendData(int socketFd, string data, int dataLength);
351         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_set_data_received_cb")]
352         internal static extern int SetDataReceivedCallback(DataReceivedCallback callback, IntPtr userData);
353         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_unset_data_received_cb")]
354         internal static extern int UnsetDataReceivedCallback();
355         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_set_connection_state_changed_cb")]
356         internal static extern int SetConnectionStateChangedCallback(SocketConnectionStateChangedCallback callback, IntPtr userData);
357         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_socket_unset_connection_state_changed_cb")]
358         internal static extern int UnsetSocketConnectionStateChangedCallback();
359
360         // Bluetooth Audio
361         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_audio_initialize")]
362         internal static extern int InitializeAudio();
363         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_audio_deinitialize")]
364         internal static extern int DeinitializeAudio();
365
366         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_audio_connect")]
367         internal static extern int Connect(string deviceAddress, int profileType);
368         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_audio_disconnect")]
369         internal static extern int Disconnect(string deviceAddress, int profileType);
370
371         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_audio_set_connection_state_changed_cb")]
372         internal static extern int SetAudioConnectionStateChangedCallback(AudioConnectionStateChangedCallback audioStateChangedCb, IntPtr userData);
373         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_audio_unset_connection_state_changed_cb")]
374         internal static extern int UnsetAudioConnectionStateChangedCallback();
375
376         // Bluetooth Hid
377         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
378         internal delegate void HidConnectionStateChangedCallback(int result, bool connected, string deviceAddress, IntPtr userData);
379         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
380         internal delegate void HidDeviceConnectionStateChangedCallback(int result, bool connected, string deviceAddress, IntPtr userData);
381         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
382         internal delegate void HidDeviceDataReceivedCallback(ref BluetoothHidDeviceReceivedDataStruct receivedData, IntPtr userData);
383
384         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_host_initialize")]
385         internal static extern int InitializeHid(HidConnectionStateChangedCallback hidConnectionChangedCb, IntPtr userData);
386         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_host_deinitialize")]
387         internal static extern int DeinitializeHid();
388         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_host_connect")]
389         internal static extern int Connect(string deviceAddress);
390         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_host_disconnect")]
391         internal static extern int Disconnect(string deviceAddress);
392
393         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_activate")]
394         internal static extern int ActivateHidDevice(HidDeviceConnectionStateChangedCallback stateChangedCb, IntPtr userData);
395         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_deactivate")]
396         internal static extern int DeactivateHidDevice();
397         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_connect")]
398         internal static extern int ConnectHidDevice(string deviceAddress);
399         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_disconnect")]
400         internal static extern int DisconnectHidDevice(string deviceAddress);
401         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_send_mouse_event")]
402         internal static extern int SendHidDeviceMouseEvent(string deviceAddress, BluetoothHidMouseData mouseData);
403         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_send_key_event")]
404         internal static extern int SendHidDeviceKeyEvent(string deviceAddress, BluetoothHidKeyData keyData);
405         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_set_data_received_cb")]
406         internal static extern int SetHidDeviceDataReceivedCallback(HidDeviceDataReceivedCallback dataReceivedCb, IntPtr userData);
407         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_unset_data_received_cb")]
408         internal static extern int UnsetHidDeviceDataReceivedCallback();
409         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_hid_device_reply_to_report")]
410         internal static extern int ReplyToReportHidDevice(string deviceAddress, BluetoothHidHeaderType headerType, BluetoothHidParamType paramType, byte[] value, int len, IntPtr userData);
411
412         // Bluetooth OPP
413         // Opp Server
414         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_server_initialize")]
415         internal static extern int InitializeOppServer(string deviceAddress, PushRequestedCallback pushRequestedCb, IntPtr userData);
416
417         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_server_deinitialize")]
418         internal static extern int DinitializeOppServer();
419
420         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_server_initialize_by_connection_request")]
421         internal static extern int InitializeOppServerCustom(string deviceAddress, ConnectionRequestedCallback connectionRequestedCb, IntPtr userData);
422
423         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_server_accept")]
424         internal static extern int OppServerAcceptPush(TransferProgressCallback transferProgressCb, TransferFinishedCallback transferFinishedCb, string name, IntPtr userData, out int transferId);
425
426         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_server_reject")]
427         internal static extern int OppServerRejectPush();
428
429         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_server_cancel_transfer")]
430         internal static extern int OppServerCancelTransfer(int transferId);
431
432         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_server_set_destination")]
433         internal static extern int OppServerSetDestinationPath(string path);
434
435         // Opp Client
436         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_client_initialize")]
437         internal static extern int InitializeOppClient();
438
439         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_client_deinitialize")]
440         internal static extern int DeinitializeOppClient();
441
442         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_client_add_file")]
443         internal static extern int OppClientAddFile(string filePath);
444
445         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_client_clear_files")]
446         internal static extern int OppClientClearFiles();
447
448         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_client_cancel_push")]
449         internal static extern int OppClientCancelPush();
450
451         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_opp_client_push_files")]
452         internal static extern int OppClientPushFile(string filePath, PushRespondedCallback pushRespondedCb, PushProgressCallback pushProgressCb, PushFinishedCallback pushFinishedCb, IntPtr userData);
453
454         //Bluetooth Avrcp
455         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_initialize")]
456         internal static extern int InitializeAvrcp(TargetConnectionStateChangedCallback targetStateChangedCb, IntPtr userData);
457         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_deinitialize")]
458         internal static extern int DeinitializeAvrcp();
459         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_notify_equalizer_state")]
460         internal static extern int NotifyEqualizerState(int state);
461         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_notify_repeat_mode")]
462         internal static extern int NotifyRepeatMode(int repeat);
463         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_notify_shuffle_mode")]
464         internal static extern int NotifyShuffleMode(int shuffle);
465         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_notify_scan_mode")]
466         internal static extern int NotifyScanMode(int scan);
467         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_notify_player_state")]
468         internal static extern int NotifyPlayerState(int state);
469         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_notify_position")]
470         internal static extern int NotifyCurrentPosition(uint position);
471         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_target_notify_track")]
472         internal static extern int NotifyTrack(string title, string artist, string album, string genre, uint trackNum, uint totaltracks, uint duration);
473
474         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_set_equalizer_state_changed_cb")]
475         internal static extern int SetEqualizerStateChangedCallback(EqualizerStateChangedCallback equalizerStateChangedCb, IntPtr userData);
476         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_unset_equalizer_state_changed_cb")]
477         internal static extern int UnsetEqualizerStateChangedCallback();
478         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_set_repeat_mode_changed_cb")]
479         internal static extern int SetRepeatModeChangedCallback(RepeatModeChangedCallback repeatModeChangedCb, IntPtr userData);
480         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_unset_repeat_mode_changed_cb")]
481         internal static extern int UnsetRepeatModeChangedCallback();
482         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_set_shuffle_mode_changed_cb")]
483         internal static extern int SetShuffleModeChangedCallback(ShuffleModeChangedCallback shuffleModeChangedCb, IntPtr userData);
484         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_unset_shuffle_mode_changed_cb")]
485         internal static extern int UnsetShuffleModeChangedCallback();
486         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_set_scan_mode_changed_cb")]
487         internal static extern int SetScanModeChangedCallback(ScanModeChangedCallback scanModeChangedCb, IntPtr userData);
488         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_avrcp_unset_scan_mode_changed_cb")]
489         internal static extern int UnsetScanModeChangedCallback();
490
491         // Bluetooth GATT
492
493         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
494         internal delegate bool BtGattForeachCallback(int total, int index, IntPtr gattHandle, IntPtr userData);
495
496         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
497         internal delegate void BtGattServerReadValueRequestedCallback(string clientAddress, int requestId, IntPtr serverHandle, IntPtr gattHandle, int offset, IntPtr userData);
498
499         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
500         internal delegate void BtGattServerWriteValueRequestedCallback(string clientAddress, int requestId, IntPtr serverHandle, IntPtr gattHandle, int offset, bool response_needed, byte[] value, int len, IntPtr userData);
501
502         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
503         internal delegate void BtClientCharacteristicValueChangedCallback(IntPtr characteristicHandle, IntPtr value, int len, IntPtr userData);
504
505         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
506         internal delegate void BtGattServerNotificationStateChangeCallback(bool notify, IntPtr serverHandle, IntPtr characteristicHandle, IntPtr userData);
507
508         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
509         internal delegate void BtGattServerNotificationSentCallback(int result, string clientAddress, IntPtr serverHandle, IntPtr characteristicHandle, bool completed, IntPtr userData);
510
511         [UnmanagedFunctionPointerAttribute(CallingConvention.Cdecl)]
512         internal delegate void BtGattClientRequestCompletedCallback(int result, IntPtr requestHandle, IntPtr userData);
513
514         // Gatt Attribute
515
516         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_destroy")]
517         internal static extern int BtGattDestroy(IntPtr gattHandle);
518
519         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_get_uuid")]
520         internal static extern int BtGattGetUuid(BluetoothGattAttributeHandle gattHandle, out string uuid);
521
522         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_get_value")]
523         internal static extern int BtGattGetValue(BluetoothGattAttributeHandle gattHandle, out IntPtr nativeValue, out int valueLength);
524
525         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_set_value")]
526         internal static extern int BtGattSetValue(BluetoothGattAttributeHandle gattHandle, byte[] value, int valueLength);
527
528         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_get_int_value")]
529         internal static extern int BtGattGetIntValue(BluetoothGattAttributeHandle gattHandle, int type, int offset, out int value);
530
531         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_set_int_value")]
532         internal static extern int BtGattSetIntValue(BluetoothGattAttributeHandle gattHandle, int type, int value, int offset);
533
534         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_get_float_value")]
535         internal static extern int BtGattGetFloatValue(BluetoothGattAttributeHandle gattHandle, int type, int offset, out float value);
536
537         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_set_float_value")]
538         internal static extern int BtGattSetFloatValue(BluetoothGattAttributeHandle gattHandle, int type, int mantissa, int exponent, int offset);
539
540         // GATT Descriptor
541
542         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_descriptor_create")]
543         internal static extern int BtGattDescriptorCreate(string uuid, int permissions, byte[] value, int valueLength, out BluetoothGattAttributeHandle descriptorHandle);
544
545         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_descriptor_get_permissions")]
546         internal static extern int BtGattDescriptorGetPermissions(BluetoothGattAttributeHandle descriptorHandle, out int permissions);
547
548         // GATT Characteristic
549
550         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_create")]
551         internal static extern int BtGattCharacteristicCreate(string uuid, int permissions, int properties, byte[] value, int valueLength, out BluetoothGattAttributeHandle characteristicHandle);
552
553         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_get_permissions")]
554         internal static extern int BtGattCharacteristicGetPermissions(BluetoothGattAttributeHandle characteristicHandle, out int permissions);
555
556         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_get_properties")]
557         internal static extern int BtGattCharacteristicGetProperties(BluetoothGattAttributeHandle characteristicHandle, out int properties);
558
559         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_set_properties")]
560         internal static extern int BtGattCharacteristicSetProperties(BluetoothGattAttributeHandle characteristicHandle, int properties);
561
562         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_get_write_type")]
563         internal static extern int BtGattCharacteristicGetWriteType(BluetoothGattAttributeHandle characteristicHandle, out int writeType);
564
565         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_set_write_type")]
566         internal static extern int BtGattCharacteristicSetWriteType(BluetoothGattAttributeHandle characteristicHandle, int writeType);
567
568         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_add_descriptor")]
569         internal static extern int BtGattCharacteristicAddDescriptor(BluetoothGattAttributeHandle characteristicHandle, BluetoothGattAttributeHandle descriptorHandle);
570
571         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_get_descriptor")]
572         internal static extern int BtGattCharacteristicGetDescriptor(BluetoothGattAttributeHandle characteristicHandle, string uuid, out BluetoothGattAttributeHandle descriptorHandle);
573
574         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_characteristic_foreach_descriptors")]
575         internal static extern int BtGattCharacteristicForeachDescriptors(BluetoothGattAttributeHandle characteristicHandle, BtGattForeachCallback callback, IntPtr userData);
576
577         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_set_characteristic_value_changed_cb")]
578         internal static extern int BtGattClientSetCharacteristicValueChangedCallback(BluetoothGattAttributeHandle characteristicHandle, BtClientCharacteristicValueChangedCallback cb, IntPtr userData);
579
580         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_unset_characteristic_value_changed_cb")]
581         internal static extern int BtGattClientUnsetCharacteristicValueChangedCallback(BluetoothGattAttributeHandle characteristicHandle);
582
583         // GATT Service
584
585         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_service_create")]
586         internal static extern int BtGattServiceCreate(string uuid, int type, out BluetoothGattAttributeHandle serviceHandle);
587
588         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_service_add_characteristic")]
589         internal static extern int BtGattServiceAddCharacteristic(BluetoothGattAttributeHandle serviceHandle, BluetoothGattAttributeHandle characteristicHandle);
590
591         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_service_get_characteristic")]
592         internal static extern int BtGattServiceGetCharacteristic(BluetoothGattAttributeHandle serviceHandle, string uuid, out BluetoothGattAttributeHandle characteristicHandle);
593
594         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_service_foreach_characteristics")]
595         internal static extern int BtGattServiceForeachCharacteristics(BluetoothGattAttributeHandle serviceHandle, BtGattForeachCallback callback, IntPtr userData);
596
597         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_service_add_included_service")]
598         internal static extern int BtGattServiceAddIncludedService(BluetoothGattAttributeHandle serviceHandle, BluetoothGattAttributeHandle includedServiceHandle);
599
600         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_service_get_included_service")]
601         internal static extern int BtGattServiceGetIncludedService(BluetoothGattAttributeHandle serviceHandle, string uuid, out BluetoothGattAttributeHandle includedServiceHandle);
602
603         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_service_foreach_included_services")]
604         internal static extern int BtGattServiceForeachIncludedServices(BluetoothGattAttributeHandle serviceHandle, BtGattForeachCallback callback, IntPtr userData);
605
606         // GATT Client
607
608         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_destroy")]
609         internal static extern int BtGattClientDestroy(IntPtr clientHandle);
610
611         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_create")]
612         internal static extern int BtGattClientCreate(string remoteAddress, out BluetoothGattClientHandle clientHandle);
613
614         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_get_remote_address")]
615         internal static extern int BtGattClientGetRemoteAddress(BluetoothGattClientHandle clientHandle, out string remoteAddress);
616
617         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_get_service")]
618         internal static extern int BtGattClientGetService(BluetoothGattClientHandle clientHandle, string uuid, out BluetoothGattAttributeHandle serviceHandle);
619
620         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_foreach_services")]
621         internal static extern int BtGattClientForeachServices(BluetoothGattClientHandle clientHandle, BtGattForeachCallback callback, IntPtr userData);
622
623         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_read_value")]
624         internal static extern int BtGattClientReadValue(BluetoothGattAttributeHandle gattHandle, BtGattClientRequestCompletedCallback callback, IntPtr userData);
625
626         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_client_write_value")]
627         internal static extern int BtGattClientWriteValue(BluetoothGattAttributeHandle gattHandle, BtGattClientRequestCompletedCallback callback, IntPtr userData);
628
629         // GATT Server
630
631         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_destroy")]
632         internal static extern int BtGattServerDestroy(IntPtr serverHandle);
633
634         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_create")]
635         internal static extern int BtGattServerCreate(out BluetoothGattServerHandle serverHandle);
636
637         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_initialize")]
638         internal static extern int BtGattServerInitialize();
639
640         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_deinitialize")]
641         internal static extern int BtGattServerDeinitialize();
642
643         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_set_read_value_requested_cb")]
644         internal static extern int BtGattServerSetReadValueRequestedCallback(BluetoothGattAttributeHandle gattHandle, BtGattServerReadValueRequestedCallback callback, IntPtr userData);
645
646         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_set_write_value_requested_cb")]
647         internal static extern int BtGattServerSetWriteValueRequestedCallback(BluetoothGattAttributeHandle gattHandle, BtGattServerWriteValueRequestedCallback callback, IntPtr userData);
648
649         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_set_characteristic_notification_state_change_cb")]
650         internal static extern int BtGattServeSetNotificationStateChangeCallback(BluetoothGattAttributeHandle characteristicHandle, BtGattServerNotificationStateChangeCallback callback, IntPtr userData);
651
652         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_start")]
653         internal static extern int BtGattServerStart();
654
655         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_register_service")]
656         internal static extern int BtGattServerRegisterService(BluetoothGattServerHandle serverHandle, BluetoothGattAttributeHandle serviceHandle);
657
658         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_unregister_service")]
659         internal static extern int BtGattServerUnregisterService(BluetoothGattServerHandle serverHandle, BluetoothGattAttributeHandle serviceHandle);
660
661         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_unregister_all_services")]
662         internal static extern int BtGattServerUnregisterAllServices(BluetoothGattServerHandle serverHandle);
663
664         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_get_service")]
665         internal static extern int BtGattServerGetService(BluetoothGattServerHandle serverHandle, string uuid, out BluetoothGattAttributeHandle serviceHandle);
666
667         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_foreach_services")]
668         internal static extern int BtGattServerForeachServices(BluetoothGattServerHandle serverHandle, BtGattForeachCallback callback, IntPtr userData);
669
670         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_send_response")]
671         internal static extern int BtGattServerSendResponse(int requestId, int requestType, int offset, int status, byte[] value, int valueLen);
672
673         [DllImport(Libraries.Bluetooth, EntryPoint = "bt_gatt_server_notify_characteristic_changed_value")]
674         internal static extern int BtGattServerNotify(BluetoothGattAttributeHandle characteristicHandle, BtGattServerNotificationSentCallback callback, string clientAddress, IntPtr userData);
675     }
676 }
677
678