mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
18 lines
No EOL
289 B
C++
18 lines
No EOL
289 B
C++
#include <iostream>
|
|
#include <Windows.h>
|
|
#include <string>
|
|
|
|
#include "common.h"
|
|
#include "../user/um/ummanager.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
if ( argc == 1 )
|
|
{
|
|
LOG_INFO( "No target process passed, terminating" );
|
|
return ERROR;
|
|
}
|
|
|
|
UserMode::Manager um_manager( argv[1]);
|
|
|
|
} |