OBJECT_NAME_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTOBAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)

typedef struct _OBJECT_NAME_INFORMATION
{
    UNICODE_STRING Name;
} OBJECT_NAME_INFORMATION, *POBJECT_NAME_INFORMATION;

#endif
#endif

View code on GitHub

This structure describes the full name for named kernel objects.

Applicable to

Members

Name

The name of the object inside the NT namespace. For more details about the relationship between Native and Win32 filenames, see this blog post.