mirror-ac/user/main.cpp

31 lines
421 B
C++
Raw Normal View History

2023-08-15 14:02:17 +02:00
#include <iostream>
#include <Windows.h>
#include <string>
#include "common.h"
2023-08-16 11:28:46 +02:00
#include "../user/um/threadpool.h"
2023-08-15 14:02:17 +02:00
#include "../user/um/ummanager.h"
2023-08-16 11:28:46 +02:00
void TestFunction()
{
}
2023-08-15 14:02:17 +02:00
int main(int argc, char* argv[])
{
2023-08-16 11:28:46 +02:00
//if ( argc == 1 )
//{
// LOG_INFO( "No target process passed, terminating" );
// return ERROR;
//}
usermode::Manager manager( "notepad.exe" );
manager.ValidateProcessThreads();
2023-08-15 14:02:17 +02:00
2023-08-16 11:28:46 +02:00
while ( 1 )
{
}
2023-08-15 14:02:17 +02:00
}