pub trait WindowsDllProc: Sized {
    type Dll: WindowsDll;
    type Sig: Copy;

    const CACHE_INDEX: usize;
    const PROC: Proc;
    const PROC_LPCSTR: LPCSTR;

    unsafe fn proc() -> Result<Self::Sig, Error<Self>>;

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

Required Associated Types

Required Associated Constants

Required Methods

Provided Methods

Implementors