mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
216ee0ada2
* deleted useless vcproj files git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3928 21ef857c-d57f-4fe0-8362-d861dc6d29cd
16 lines
243 B
C
16 lines
243 B
C
#include "tests.h"
|
|
|
|
int __cdecl main(int argc, char *argv[])
|
|
{
|
|
NTSTATUS status;
|
|
|
|
status = PhInitializePhLib();
|
|
assert(NT_SUCCESS(status));
|
|
|
|
Test_basesup();
|
|
Test_format();
|
|
Test_support();
|
|
|
|
return 0;
|
|
}
|