mirror-ac/user/main.cpp
2023-08-16 19:28:46 +10:00

31 lines
No EOL
421 B
C++

#include <iostream>
#include <Windows.h>
#include <string>
#include "common.h"
#include "../user/um/threadpool.h"
#include "../user/um/ummanager.h"
void TestFunction()
{
}
int main(int argc, char* argv[])
{
//if ( argc == 1 )
//{
// LOG_INFO( "No target process passed, terminating" );
// return ERROR;
//}
usermode::Manager manager( "notepad.exe" );
manager.ValidateProcessThreads();
while ( 1 )
{
}
}