//! FFI APIs for the compute state module.
//!
//! This module provides three different FFI API versions:
//! - **Handle-based**: Traditional C-style functions with opaque pointers
//! - **JSON-based**: String serialization for easy language interop
//! - **Bincode-based**: Binary serialization for high performance
/// bincode-based FFI bindings for compute state operations.
/// Handle-based FFI bindings for compute state using opaque handles.
/// JSON-based FFI bindings for compute state using serialized data.
// Re-export all functions for convenience
pub use *;
pub use *;
pub use *;