1#![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-os-log/0.3.2")]
12
13#[cfg(feature = "alloc")]
14extern crate alloc;
15
16#[cfg(feature = "std")]
17extern crate std;
18
19mod generated;
20#[allow(unused_imports, unreachable_pub)]
21pub use self::generated::*;
22
23#[allow(dead_code, non_camel_case_types)]
25pub(crate) type os_activity_id_t = u64;
26#[allow(dead_code, non_camel_case_types)]
28pub(crate) type os_signpost_id_t = u64;
29
30unsafe impl objc2_foundation::NSCoding for OSLogEntry {}