mirror of
https://github.com/toneillcodes/windows-process-injection
synced 2026-06-21 14:11:25 +00:00
13 lines
188 B
C
13 lines
188 B
C
#pragma once
|
|
#include <windows.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
DWORD FindPidByName(const wchar_t* processName);
|
|
HANDLE GetProcessHandle(DWORD pid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |