mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-01-02 07:51:07 -08:00
14 lines
223 B
Rust
14 lines
223 B
Rust
pub use logging::*;
|
|
// Has to be pub so all symbols in that crate is included
|
|
pub use magiskpolicy;
|
|
|
|
mod logging;
|
|
|
|
#[cxx::bridge]
|
|
pub mod ffi {
|
|
#[namespace = "rust"]
|
|
extern "Rust" {
|
|
fn setup_klog();
|
|
}
|
|
}
|