mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-05-01 06:54:27 +02:00
17 lines
249 B
Rust
17 lines
249 B
Rust
pub use base;
|
|
pub use logging::*;
|
|
|
|
mod logging;
|
|
|
|
#[cxx::bridge]
|
|
pub mod ffi {
|
|
extern "Rust" {
|
|
fn rust_test_entry();
|
|
fn android_logging();
|
|
fn magisk_logging();
|
|
fn zygisk_logging();
|
|
}
|
|
}
|
|
|
|
fn rust_test_entry() {}
|