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