mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
12 lines
159 B
C
12 lines
159 B
C
|
#ifndef INTEGRITY_H
|
||
|
#define INTEGRITY_H
|
||
|
|
||
|
#include <ntifs.h>
|
||
|
|
||
|
#define POOL_TAG_INTEGRITY 'intg'
|
||
|
|
||
|
NTSTATUS CopyDriverExecutableRegions(
|
||
|
_In_ PIRP Irp
|
||
|
);
|
||
|
|
||
|
#endif
|