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