INNER CODE UNIT · Rust
is_rtss_running
Blur009/Blur-AutoClicker · src-tauri/src/lib.rs:99
fn is_rtss_running() -> bool {
crate::engine::process::is_process_running("RTSS.exe")
}
fn create_main_window(app: &tauri::App) -> tauri::Result<()> {
let mut builder =
tauri::WebviewWindowBuilder::new(app, "main", tauri::WebviewUrl::App("index.html".into()))
.title("BlurAutoClicker")
.visible(false)
.inner_size(500.0, 150.0)
.resizable(false)
.fullscreen(false)
.decorations(false)
.transparent(true)
.maximizable(false)
.shadow(false);
// Set our own icon at creation so Windows associates the window with it