[C++]GetModuleHandle

Started by
0 comments, last by Evil Steve 19 years, 6 months ago
How do i make that GetModuleHandle an address outputs with cout. Ex. address = GetModuleHandle("something.exe");.
Advertisement
void* pAddress = (void*)GetModuleHandle("something.exe");
cout << pAddress << endl;

This topic is closed to new replies.

Advertisement