mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
31 lines
No EOL
421 B
C++
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 )
|
|
{
|
|
|
|
}
|
|
} |