screencapturekit/utils/mod.rs
1//! Utility modules
2//!
3//! This module contains helper types and functions used throughout the library.
4//!
5//! ## Modules
6//!
7//! - [`error`] - Error types and result aliases
8//! - [`ffi_string`] - FFI string retrieval utilities
9//! - [`four_char_code`] - Four-character code handling (used for pixel formats, codecs)
10//! - [`sync_completion`] - Synchronous completion utilities for async FFI callbacks
11
12pub mod error;
13pub mod ffi_string;
14pub mod four_char_code;
15pub mod sync_completion;