summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Devices/Bluetooth/Background/mod.rs
blob: 4fd0bb12fb3bfc1193a806fe680c5a74461c2bcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
#[link(name = "windows")]
extern "system" {}
#[repr(transparent)]
pub struct BluetoothEventTriggeringMode(pub i32);
impl BluetoothEventTriggeringMode {
    pub const Serial: Self = Self(0i32);
    pub const Batch: Self = Self(1i32);
    pub const KeepLatest: Self = Self(2i32);
}
impl ::core::marker::Copy for BluetoothEventTriggeringMode {}
impl ::core::clone::Clone for BluetoothEventTriggeringMode {
    fn clone(&self) -> Self {
        *self
    }
}
pub type BluetoothLEAdvertisementPublisherTriggerDetails = *mut ::core::ffi::c_void;
pub type BluetoothLEAdvertisementWatcherTriggerDetails = *mut ::core::ffi::c_void;
pub type GattCharacteristicNotificationTriggerDetails = *mut ::core::ffi::c_void;
pub type GattServiceProviderConnection = *mut ::core::ffi::c_void;
pub type GattServiceProviderTriggerDetails = *mut ::core::ffi::c_void;
pub type RfcommConnectionTriggerDetails = *mut ::core::ffi::c_void;
pub type RfcommInboundConnectionInformation = *mut ::core::ffi::c_void;
pub type RfcommOutboundConnectionInformation = *mut ::core::ffi::c_void;