pub fn is_enabled() -> bool { false }
pub fn enable() -> Result<(), String> { Err("仅支持 Windows".to_string()) }
pub fn disable() -> Result<(), String> { Err("仅支持 Windows".to_string()) }
pub fn toggle() -> Result<bool, String> { Err("仅支持 Windows".to_string()) }
pub fn is_scheduled_task_enabled() -> bool { false }
pub fn create_scheduled_task() -> Result<(), String> { Err("仅支持 Windows".to_string()) }
pub fn delete_scheduled_task() -> Result<(), String> { Err("仅支持 Windows".to_string()) }
pub fn enable_all() -> Vec<(&'static str, Result<(), String>)> { vec![] }
pub fn disable_all() -> Vec<(&'static str, Result<(), String>)> { vec![] }