Searched defs:_module (Results 1 - 1 of 1) sorted by relevance

/external/lzma/CPP/Windows/
H A DDLL.h21 HMODULE _module; member in class:NWindows::NDLL::CLibrary
23 CLibrary(): _module(NULL) {};
26 operator HMODULE() const { return _module; }
27 HMODULE* operator&() { return &_module; }
28 bool IsLoaded() const { return (_module != NULL); };
33 _module = m;
37 HMODULE m = _module;
38 _module = NULL;
49 FARPROC GetProc(LPCSTR procName) const { return My_GetProcAddress(_module, procName); }

Completed in 3003 milliseconds