Trait winsafe::prelude::dwm_Hwnd

source ·
pub trait dwm_Hwnd: uxtheme_Hwnd {
    // Provided methods
    fn DwmExtendFrameIntoClientArea(
        &self,
        margins_inset: &MARGINS
    ) -> HrResult<()> { ... }
    fn DwmInvalidateIconicBitmaps(&self) -> HrResult<()> { ... }
    fn DwmSetIconicLivePreviewBitmap(
        &self,
        hbmp: HBITMAP,
        pt_client: Option<POINT>,
        sit_flags: Option<DWM_SIT>
    ) -> HrResult<()> { ... }
    fn DwmSetIconicThumbnail(
        &self,
        hbmp: HBITMAP,
        sit_flags: Option<DWM_SIT>
    ) -> HrResult<()> { ... }
}
Available on crate features kernel and dwm only.
Expand description

This trait is enabled with the dwm feature, and provides methods for HWND.

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§