コード例 #1
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattGetValue(BluetoothGattAttributeHandle gattHandle, out IntPtr nativeValue, out int valueLength);
コード例 #2
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServeSetNotificationStateChangeCallback(BluetoothGattAttributeHandle characteristicHandle, BtGattServerNotificationStateChangeCallback callback, IntPtr userData);
コード例 #3
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServerGetService(BluetoothGattServerHandle serverHandle, string uuid, out BluetoothGattAttributeHandle serviceHandle);
コード例 #4
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServiceGetIncludedService(BluetoothGattAttributeHandle serviceHandle, string uuid, out BluetoothGattAttributeHandle includedServiceHandle);
コード例 #5
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattClientWriteValue(BluetoothGattAttributeHandle gattHandle, BtGattClientRequestCompletedCallback callback, IntPtr userData);
コード例 #6
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServiceAddCharacteristic(BluetoothGattAttributeHandle serviceHandle, BluetoothGattAttributeHandle characteristicHandle);
コード例 #7
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServiceForeachCharacteristics(BluetoothGattAttributeHandle serviceHandle, BtGattForeachCallback callback, IntPtr userData);
コード例 #8
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattDescriptorGetPermissions(BluetoothGattAttributeHandle descriptorHandle, out int permissions);
コード例 #9
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattCharacteristicCreate(string uuid, int permissions, int properties, byte[] value, int valueLength, out BluetoothGattAttributeHandle characteristicHandle);
コード例 #10
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattSetFloatValue(BluetoothGattAttributeHandle gattHandle, int type, int mantissa, int exponent, int offset);
コード例 #11
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattDescriptorCreate(string uuid, int permissions, byte[] value, int valueLength, out BluetoothGattAttributeHandle descriptorHandle);
コード例 #12
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattGetFloatValue(BluetoothGattAttributeHandle gattHandle, int type, int offset, out float value);
コード例 #13
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattSetIntValue(BluetoothGattAttributeHandle gattHandle, int type, int value, int offset);
コード例 #14
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattSetValue(BluetoothGattAttributeHandle gattHandle, byte[] value, int valueLength);
コード例 #15
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattClientUnsetCharacteristicValueChangedCallback(BluetoothGattAttributeHandle characteristicHandle);
コード例 #16
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattCharacteristicGetPermissions(BluetoothGattAttributeHandle characteristicHandle, out int permissions);
コード例 #17
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServiceCreate(string uuid, int type, out BluetoothGattAttributeHandle serviceHandle);
コード例 #18
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattCharacteristicSetProperties(BluetoothGattAttributeHandle characteristicHandle, int properties);
コード例 #19
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServiceGetCharacteristic(BluetoothGattAttributeHandle serviceHandle, string uuid, out BluetoothGattAttributeHandle characteristicHandle);
コード例 #20
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattCharacteristicSetWriteType(BluetoothGattAttributeHandle characteristicHandle, int writeType);
コード例 #21
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServiceAddIncludedService(BluetoothGattAttributeHandle serviceHandle, BluetoothGattAttributeHandle includedServiceHandle);
コード例 #22
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattCharacteristicAddDescriptor(BluetoothGattAttributeHandle characteristicHandle, BluetoothGattAttributeHandle descriptorHandle);
コード例 #23
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServiceForeachIncludedServices(BluetoothGattAttributeHandle serviceHandle, BtGattForeachCallback callback, IntPtr userData);
コード例 #24
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattCharacteristicGetDescriptor(BluetoothGattAttributeHandle characteristicHandle, string uuid, out BluetoothGattAttributeHandle descriptorHandle);
コード例 #25
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServerSetWriteValueRequestedCallback(BluetoothGattAttributeHandle gattHandle, BtGattServerWriteValueRequestedCallback callback, IntPtr userData);
コード例 #26
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattCharacteristicForeachDescriptors(BluetoothGattAttributeHandle characteristicHandle, BtGattForeachCallback callback, IntPtr userData);
コード例 #27
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServerUnregisterService(BluetoothGattServerHandle serverHandle, BluetoothGattAttributeHandle serviceHandle);
コード例 #28
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattClientSetCharacteristicValueChangedCallback(BluetoothGattAttributeHandle characteristicHandle, BtClientCharacteristicValueChangedCallback cb, IntPtr userData);
コード例 #29
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattServerNotify(BluetoothGattAttributeHandle characteristicHandle, BtGattServerNotificationSentCallback callback, string clientAddress, IntPtr userData);
コード例 #30
0
ファイル: Interop.Bluetooth.cs プロジェクト: yourina/TizenFX
 internal static extern int BtGattGetUuid(BluetoothGattAttributeHandle gattHandle, out string uuid);