objc2-watch-kit 0.3.2

Bindings to the WatchKit framework
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

#[inline]
pub unsafe extern "C-unwind" fn WKAccessibilityIsVoiceOverRunning() -> bool {
    extern "C-unwind" {
        fn WKAccessibilityIsVoiceOverRunning() -> Bool;
    }
    unsafe { WKAccessibilityIsVoiceOverRunning() }.as_bool()
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/watchkit/wkaccessibilityvoiceoverstatuschanged?language=objc)
    pub static WKAccessibilityVoiceOverStatusChanged: &'static NSString;
}

#[inline]
pub unsafe extern "C-unwind" fn WKAccessibilityIsReduceMotionEnabled() -> bool {
    extern "C-unwind" {
        fn WKAccessibilityIsReduceMotionEnabled() -> Bool;
    }
    unsafe { WKAccessibilityIsReduceMotionEnabled() }.as_bool()
}

extern "C" {
    /// [Apple's documentation](https://developer.apple.com/documentation/watchkit/wkaccessibilityreducemotionstatusdidchangenotification?language=objc)
    pub static WKAccessibilityReduceMotionStatusDidChangeNotification: &'static NSString;
}