According to http://msdn.microsoft.com/en-us/library/ms684229(VS.85).aspx: "The load address of a module (lpBaseOfDll) is the same as the HMODULE value."
| 156 | // "The load address of a module (lpBaseOfDll) is the same as the HMODULE |
| 157 | // value." |
| 158 | HMODULE hmodule() const { |
| 159 | return reinterpret_cast<HMODULE>(const_cast<void*>(module_base_address_)); |
| 160 | } |
| 161 | |
| 162 | // Populates all the windows_fn_[] vars based on our module info. |
| 163 | // Returns false if windows_fn_ is all NULL's, because there's |