mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
15 lines
255 B
Rust
15 lines
255 B
Rust
// Copyright (c) TribuFu. All Rights Reserved
|
|
|
|
use libc::c_char;
|
|
|
|
pub fn GetMessage(id: *const c_char) {}
|
|
|
|
mod External {
|
|
use libc::c_char;
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn GetMessage(id: *const c_char) {
|
|
super::GetMessage(id);
|
|
}
|
|
}
|