Home | History | Annotate | Download | only in win

Lines Matching defs:module

47   typedef bool (*EnumImportChunksFunction)(const PEImage &image, LPCSTR module,
52 // module is the dll that exports this symbol. cookie is the value passed to
55 typedef bool (*EnumImportsFunction)(const PEImage &image, LPCSTR module,
60 // module is the dll that exports this block of symbols. cookie is the value
65 LPCSTR module,
78 explicit PEImage(HMODULE module) : module_(module) {}
79 explicit PEImage(const void* module) {
80 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module));
84 HMODULE module() const;
87 void set_module(HMODULE module);
247 inline HMODULE PEImage::module() const {