View windows-window.rs
// Let's put this so that it won't open console | |
#![windows_subsystem = "windows"] | |
extern crate winapi; | |
// https://docs.rs/winapi/*/x86_64-pc-windows-msvc/winapi/um/libloaderapi/index.html?search=winuser | |
use std::ffi::OsStr; | |
use std::os::windows::ffi::OsStrExt; | |
use std::iter::once; | |
use std::mem; | |
use std::ptr::null_mut; |