objc2_io_bluetooth/
lib.rs1#![no_std]
8#![cfg_attr(feature = "unstable-darwin-objc", feature(darwin_objc))]
9#![cfg_attr(docsrs, feature(doc_cfg))]
10#![doc(html_root_url = "https://docs.rs/objc2-io-bluetooth/0.3.2")]
12
13#[cfg(feature = "alloc")]
14extern crate alloc;
15
16#[cfg(feature = "std")]
17extern crate std;
18
19mod generated;
20mod macros;
21
22#[allow(unused_imports, unreachable_pub)]
23pub use self::generated::*;
24#[allow(unused_imports, unreachable_pub)]
25pub use self::macros::*;
26
27#[allow(dead_code)]
29pub(crate) type IOReturn = core::ffi::c_int; #[allow(dead_code)]
33pub(crate) type IOItemCount = u32; #[allow(dead_code)]
37pub(crate) type Boolean = u8;
38#[allow(dead_code)]
39pub(crate) type ByteCount = core::ffi::c_ulong;
40
41#[cfg(feature = "Bluetooth")]
42pub type BluetoothDeviceName = [u8; kBluetoothDeviceNameMaxLength as usize];