mirror-ac/user/um/process.h
lhodges1 2861eed804 eee
2023-08-15 22:27:40 +10:00

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