14 lines
228 B
Rust
Raw Normal View History

2023-06-22 02:23:27 -07:00
use logging::setup_klog;
2023-05-24 19:11:56 -07:00
// Has to be pub so all symbols in that crate is included
pub use magiskpolicy;
2022-07-05 21:13:09 -07:00
mod logging;
2023-05-23 21:50:13 -07:00
#[cxx::bridge]
pub mod ffi {
#[namespace = "rust"]
2022-07-05 21:13:09 -07:00
extern "Rust" {
fn setup_klog();
}
}