Skip to main content

il2cpp_bridge_rs/api/core/
mod.rs

1//! Core utilities for IL2CPP interaction
2//!
3//! This module contains essential utilities for interacting with the IL2CPP runtime,
4//! including API definitions, caching mechanisms, method invocation helpers,
5//! and thread management.
6//!
7//! # Modules
8//!
9//! * `api` - raw FFI bindings to the IL2CPP API
10//! * `cache` - caching mechanisms for IL2CPP types and metadata
11//! * `caller` - helper traits and functions for invoking IL2CPP methods
12//! * `internals` - internal initialization and state management
13//! * `thread` - thread attachment and detachment utilities
14pub mod api;
15pub mod cache;
16pub mod internals;
17pub mod runtime;
18
19pub use runtime::caller;
20pub use runtime::thread;