objc2_event_kit_ui/generated/
EventKitUIBundle.rs

1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use objc2::__framework_prelude::*;
4use objc2_foundation::*;
5
6use crate::*;
7
8#[inline]
9pub unsafe extern "C-unwind" fn EventKitUIBundle() -> Option<Retained<NSBundle>> {
10    extern "C-unwind" {
11        fn EventKitUIBundle() -> *mut NSBundle;
12    }
13    let ret = unsafe { EventKitUIBundle() };
14    unsafe { Retained::retain_autoreleased(ret) }
15}