#ifndef _NTIOAPI_H
// private
typedef struct _MUP_FSCTL_UNC_CACHE_ENTRY
{
ULONG TotalLength;
ULONG UncNameOffset; // to WCHAR[] from this struct
USHORT UncNameLength; // in bytes
ULONG ProviderNameOffset; // to WCHAR[] from this struct
USHORT ProviderNameLength; // in bytes
ULONG SurrogateNameOffset; // to WCHAR[] from this struct
USHORT SurrogateNameLength; // in bytes
ULONG ProviderPriority;
ULONG EntryTtl;
WCHAR Strings[ANYSIZE_ARRAY];
} MUP_FSCTL_UNC_CACHE_ENTRY, *PMUP_FSCTL_UNC_CACHE_ENTRY;
View code on GitHub
No description available.