mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
19 lines
No EOL
234 B
C++
19 lines
No EOL
234 B
C++
#ifndef UMMANAGER_H
|
|
#define UMMANAGER_H
|
|
|
|
#include <string>
|
|
#include <Windows.h>
|
|
|
|
namespace UserMode
|
|
{
|
|
class Manager
|
|
{
|
|
std::string process_name;
|
|
HANDLE process_handle;
|
|
|
|
public:
|
|
Manager( std::string ProcessName );
|
|
};
|
|
}
|
|
|
|
#endif |