API_SET_NAMESPACE_ENTRY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPEBTEB_H

// private
typedef struct _API_SET_NAMESPACE_ENTRY
{
    ULONG Flags; // API_SET_SCHEMA_ENTRY_FLAGS_*
    ULONG NameOffset; // to WCHAR[NameLength / sizeof(WCHAR)], from schema base
    ULONG NameLength;
    ULONG HashedLength;
    ULONG ValueOffset; // to API_SET_VALUE_ENTRY[ValueCount], from schema base
    ULONG ValueCount;
} API_SET_NAMESPACE_ENTRY, *PAPI_SET_NAMESPACE_ENTRY;

#endif

View code on GitHub

No description available.