#ifndef _NTMISC_H
typedef struct _AHC_SERVICE_DATACACHE
{
HANDLE FileHandle; // User space handle to file.
USHORT ExeType; // Executable bitness.
USHORT Padding; // Padding to even USHORTs.
UINT HintFlags; // Metadata flags about cache query.
HANDLE ProcessHandle; // User space process handle.
UNICODE_STRING FileName; // Executable file name.
UNICODE_STRING Environment; // Environment block.
UNICODE_STRING PackageAlias; // Aliased package moniker in a packed string.
ULONG CustomDataSize; // Size of the custom data to cache.
PBYTE CustomData; // Pointer to the custom data.
} AHC_SERVICE_DATACACHE, *PAHC_SERVICE_DATACACHE;
View code on GitHub
No description available.