mirror of
https://github.com/wavestone-cdt/EDRSandblast.git
synced 2026-06-08 16:37:12 +00:00
14 lines
364 B
C
14 lines
364 B
C
#pragma once
|
|
#include <Windows.h>
|
|
#include <tchar.h>
|
|
|
|
#define ProcessImageFileName 27
|
|
|
|
DWORD SandGetProcessPID(HANDLE hProcess);
|
|
|
|
PUNICODE_STRING SandGetProcessImage(HANDLE hProcess);
|
|
|
|
DWORD SandGetProcessFilename(PUNICODE_STRING ProcessImageUnicodeStr, LPWSTR ImageFileName, DWORD nSize);
|
|
|
|
DWORD SandFindProcessPidByName(LPCWSTR targetProcessName, DWORD* pPid);
|