nstd_gui_window_create_child

Function nstd_gui_window_create_child 

Source
pub unsafe extern "C" fn nstd_gui_window_create_child(
    event_loop: NSTDEventLoop,
    parent: NSTDWindow,
) -> NSTDWindow
Expand description

Creates a child window with parent being the parent window. NOTE: This is only functional on Windows targets and will always return a null window handle on any other platform. Parameters: NSTDEventLoop event_loop - The event loop to attach to the window. NSTDWindow parent - The parent window. Returns: NSTDWindow child - The new child window.