mirror-ac/user/um/process.h

16 lines
220 B
C
Raw Normal View History

2023-08-15 14:02:17 +02:00
#ifndef PROCESS_H
#define PROCESS_H
#include <Windows.h>
#include <TlHelp32.h>
#include <string>
namespace UserMode
{
2023-08-15 14:27:21 +02:00
namespace Process
{
HANDLE GetHandleToProcessGivenName( std::string ProcessName );
}
2023-08-15 14:02:17 +02:00
}
#endif