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

22 lines
402 B
Rust

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