int wmain( int /*argc*/, wchar_t* /*argv*/[] ) { Process proc, proc2; proc.Attach( GetCurrentProcessId() ); TestPEB( proc ); TestTEB( proc ); TestLocalHook(); TestRemoteCall(); //TestRemoteHook(); TestMMap(); return 0; }
int main( int /*argc*/, char* /*argv*/[] ) { Process proc; proc.Attach( GetCurrentProcessId() ); TestPEB( proc ); TestTEB( proc ); TestMultiPtr(); TestPatterns(); TestLocalHook(); TestRemoteCall(); TestRemoteHook(); TestDriver(); TestRemoteMem(); TestMMap(); return 0; }