mirror-ac/driver/integrity.h

16 lines
207 B
C
Raw Normal View History

2023-08-22 19:32:25 +02:00
#ifndef INTEGRITY_H
#define INTEGRITY_H
#include <ntifs.h>
#define POOL_TAG_INTEGRITY 'intg'
NTSTATUS CopyDriverExecutableRegions(
_In_ PIRP Irp
);
2023-08-23 14:14:20 +02:00
NTSTATUS GetDriverImageSize(
_In_ PIRP Irp
);
2023-08-22 19:32:25 +02:00
#endif