[][src]Trait winit::os::windows::WindowExt

pub trait WindowExt {
    fn get_hwnd(&self) -> *mut c_void;
fn set_taskbar_icon(&self, taskbar_icon: Option<Icon>); }

Additional methods on Window that are specific to Windows.

Required methods

fn get_hwnd(&self) -> *mut c_void

Returns the native handle that is used by this window.

The pointer will become invalid when the native window was destroyed.

fn set_taskbar_icon(&self, taskbar_icon: Option<Icon>)

This sets ICON_BIG. A good ceiling here is 256x256.

Loading content...

Implementors

impl WindowExt for Window[src]

Loading content...