SEMAPHORE_INFORMATION_CLASS - NtDoc

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

typedef enum _SEMAPHORE_INFORMATION_CLASS
{
    SemaphoreBasicInformation
} SEMAPHORE_INFORMATION_CLASS;

#endif
#endif

View code on GitHub

SEMAPHORE_INFORMATION_CLASS is enumeration type used with function NtQuerySemaphore. Currently only one class is defined:

SemaphoreBasicInformation

Result of call to NtQuerySemaphore is SEMAPHORE_BASIC_INFORMATION structure.

Documented by

See also