EFI_STATUS UefiMain ( IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable ) { EFI_STATUS Status = 0; Status = TestAllocateAnyPages(); Status = TestAllocateAddress(); Status = TestMMap(); return Status; }
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; }