create_window

Function create_window 

Source
pub fn create_window(handle: HWND)
Expand description

Create window using window handle.

handle - can be result of create_window_handle() func

Example:

fn main() {
    let class_name = wide_null("My app window Class");
    let window_name = wide_null("My app window");
    let (window_class, h_instance) = create_window_class(&class_name, window_procedure);
    let window_handle = create_window_handle(&window_class, &class_name, &window_name, h_instance);
    create_window(window_handle);
}