mirror of
https://github.com/8damon/Blackbird-Platform
synced 2026-06-21 13:41:12 +00:00
18 lines
295 B
C
18 lines
295 B
C
#ifndef BK_IMAGE_MONITOR_H
|
|
#define BK_IMAGE_MONITOR_H
|
|
|
|
#include <ntdef.h>
|
|
|
|
NTSTATUS
|
|
BkcimgInitialize(VOID);
|
|
|
|
VOID BkcimgUninitialize(VOID);
|
|
|
|
BOOLEAN
|
|
BkcimgSelfCheck(VOID);
|
|
|
|
BOOLEAN
|
|
BkcimgQueryPrimaryNtdll(_In_ HANDLE ProcessId, _Out_ UINT64 *PrimaryBase, _Out_opt_ UINT64 *PrimarySize);
|
|
|
|
#endif
|