Process Hacker
main.c
Go to the documentation of this file.
1 #include "tests.h"
2 
3 int __cdecl main(int argc, char *argv[])
4 {
5  NTSTATUS status;
6 
7  status = PhInitializePhLib();
8  assert(NT_SUCCESS(status));
9 
10  Test_basesup();
11  Test_format();
12  Test_support();
13 
14  return 0;
15 }