mirror-ac/user/um/process.h

13 lines
194 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
{
HANDLE GetHandleToProcessGivenName( std::string ProcessName );
}
#endif