pub trait WindowsDll: Sized + 'static {
    const LEN: usize;
    const LIB: &'static str;
    const LIB_LPCWSTR: LPCWSTR;
    const FLAGS: LOAD_LIBRARY_FLAGS;

    unsafe fn cache() -> &'static DllCache<Self>;

    unsafe fn exists() -> bool { ... }
    unsafe fn free() -> bool { ... }
}

Required Associated Constants

Required Methods

Provided Methods

Implementors