Files
sdk-rust/Source/Account/User.rs
2021-02-24 09:12:23 -03:00

15 lines
246 B
Rust

// Copyright (c) TribuFu. All Rights Reserved
use libc::c_char;
pub fn GetUser(id: *const c_char) {}
mod External {
use libc::c_char;
#[no_mangle]
pub extern "C" fn GetUser(id: *const c_char) {
super::GetUser(id);
}
}