mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
12 lines
253 B
C++
12 lines
253 B
C++
#include "ummanager.h"
|
|
|
|
#include "../common.h"
|
|
#include "process.h"
|
|
|
|
#include <TlHelp32.h>
|
|
|
|
UserMode::Manager::Manager( std::string ProcessName )
|
|
{
|
|
this->process_name = ProcessName;
|
|
this->process_handle = GetHandleToProcessGivenName( ProcessName );
|
|
}
|