approve mode, cm sync option

Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
21pages
2022-11-20 15:53:08 +08:00
parent 8b20237096
commit 05c549a5fe
39 changed files with 298 additions and 56 deletions

View File

@@ -135,6 +135,10 @@ impl SciterConnectionManager {
fn elevate_portable(&self, id: i32) {
crate::ui_cm_interface::elevate_portable(id);
}
fn get_option(&self, key: String) -> String {
crate::ui_interface::get_option(key)
}
}
impl sciter::EventHandler for SciterConnectionManager {
@@ -155,5 +159,6 @@ impl sciter::EventHandler for SciterConnectionManager {
fn send_msg(i32, String);
fn can_elevate();
fn elevate_portable(i32);
fn get_option(String);
}
}