mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
13 lines
194 B
C
13 lines
194 B
C
|
#ifndef PROCESS_H
|
||
|
#define PROCESS_H
|
||
|
|
||
|
#include <Windows.h>
|
||
|
#include <TlHelp32.h>
|
||
|
#include <string>
|
||
|
|
||
|
namespace UserMode
|
||
|
{
|
||
|
HANDLE GetHandleToProcessGivenName( std::string ProcessName );
|
||
|
}
|
||
|
|
||
|
#endif
|