#ifndef _NTEXAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
typedef enum _SEMAPHORE_INFORMATION_CLASS
{
SemaphoreBasicInformation
} SEMAPHORE_INFORMATION_CLASS;
View code on GitHub
SEMAPHORE_INFORMATION_CLASS
is enumeration type used with function NtQuerySemaphore
. Currently only one class is defined:
Result of call to NtQuerySemaphore
is SEMAPHORE_BASIC_INFORMATION
structure.