1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
crate::ix!(); /** | Show error message * | */ pub fn init_error(str_: &BilingualStr) -> bool { todo!(); /* uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_ERROR); return false; */ } /** | Show warning message * | */ pub fn init_warning(str_: &BilingualStr) { todo!(); /* uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_WARNING); */ }