rust-switcher 1.0.11

Windows keyboard layout switcher and text conversion utility
Documentation
1
2
3
4
5
6
7
8
use windows::Win32::Foundation::HWND;

use crate::app::AppState;

#[allow(dead_code)]
pub fn push(hwnd: HWND, _state: &mut AppState, title: &str, text: &str) {
    crate::platform::ui::notify::push_info(hwnd, title, text);
}