screencapturekit 3.1.2

Safe Rust bindings for Apple's ScreenCaptureKit framework - screen and audio capture on macOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shared utilities.
//!
//! The framework-agnostic helpers (`FourCharCode`, `ffi_string_*`, completion
//! handlers, panic-safe wrappers) now live in `apple_cf::utils` and are
//! re-exported here for backward compatibility.
//!
//! `error.rs` is intentionally NOT migrated — it carries SCStream-specific
//! error variants that don't belong in the framework-agnostic foundation.

pub mod error;

pub use apple_cf::utils::FourCharCode;
pub use apple_cf::utils::{completion, ffi_string, four_char_code, panic_safe};