Trait winsafe::prelude::shell_ITaskbarList

source ·
pub trait shell_ITaskbarList: ole_IUnknown {
    // Provided methods
    fn ActivateTab(&self, hwnd: &HWND) -> HrResult<()> { ... }
    fn AddTab(&self, hwnd: &HWND) -> HrResult<()> { ... }
    fn DeleteTab(&self, hwnd: &HWND) -> HrResult<()> { ... }
    fn HrInit(&self) -> HrResult<()> { ... }
    fn SetActiveAlt(&self, hwnd: &HWND) -> HrResult<()> { ... }
}
Available on crate features kernel and shell only.
Expand description

This trait is enabled with the shell feature, and provides methods for ITaskbarList.

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§