Win32 API 日本語リファレンス
ホームStorage.FileSystem › READ_DIRECTORY_NOTIFY_INFORMATION_CLASS

READ_DIRECTORY_NOTIFY_INFORMATION_CLASS

列挙型
基底型i4

メンバー 4

名前10進16進
ReadDirectoryNotifyInformation10x1
ReadDirectoryNotifyExtendedInformation20x2
ReadDirectoryNotifyFullInformation30x3
ReadDirectoryNotifyMaximumInformation40x4

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS : int {
    ReadDirectoryNotifyInformation = 1,
    ReadDirectoryNotifyExtendedInformation = 2,
    ReadDirectoryNotifyFullInformation = 3,
    ReadDirectoryNotifyMaximumInformation = 4
} READ_DIRECTORY_NOTIFY_INFORMATION_CLASS;
public enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS : int
{
    ReadDirectoryNotifyInformation = 1,
    ReadDirectoryNotifyExtendedInformation = 2,
    ReadDirectoryNotifyFullInformation = 3,
    ReadDirectoryNotifyMaximumInformation = 4,
}
Public Enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS As Integer
    ReadDirectoryNotifyInformation = 1
    ReadDirectoryNotifyExtendedInformation = 2
    ReadDirectoryNotifyFullInformation = 3
    ReadDirectoryNotifyMaximumInformation = 4
End Enum
import enum

class READ_DIRECTORY_NOTIFY_INFORMATION_CLASS(enum.IntEnum):
    ReadDirectoryNotifyInformation = 1
    ReadDirectoryNotifyExtendedInformation = 2
    ReadDirectoryNotifyFullInformation = 3
    ReadDirectoryNotifyMaximumInformation = 4
// READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
pub const ReadDirectoryNotifyInformation: i32 = 1;
pub const ReadDirectoryNotifyExtendedInformation: i32 = 2;
pub const ReadDirectoryNotifyFullInformation: i32 = 3;
pub const ReadDirectoryNotifyMaximumInformation: i32 = 4;
// READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
const (
	ReadDirectoryNotifyInformation int32 = 1
	ReadDirectoryNotifyExtendedInformation int32 = 2
	ReadDirectoryNotifyFullInformation int32 = 3
	ReadDirectoryNotifyMaximumInformation int32 = 4
)
const
  ReadDirectoryNotifyInformation = 1;
  ReadDirectoryNotifyExtendedInformation = 2;
  ReadDirectoryNotifyFullInformation = 3;
  ReadDirectoryNotifyMaximumInformation = 4;
// READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
pub const ReadDirectoryNotifyInformation: i32 = 1;
pub const ReadDirectoryNotifyExtendedInformation: i32 = 2;
pub const ReadDirectoryNotifyFullInformation: i32 = 3;
pub const ReadDirectoryNotifyMaximumInformation: i32 = 4;
const
  ReadDirectoryNotifyInformation* = 1
  ReadDirectoryNotifyExtendedInformation* = 2
  ReadDirectoryNotifyFullInformation* = 3
  ReadDirectoryNotifyMaximumInformation* = 4
enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS : int {
    ReadDirectoryNotifyInformation = 1,
    ReadDirectoryNotifyExtendedInformation = 2,
    ReadDirectoryNotifyFullInformation = 3,
    ReadDirectoryNotifyMaximumInformation = 4,
}
#define global ReadDirectoryNotifyInformation         0x1
#define global ReadDirectoryNotifyExtendedInformation 0x2
#define global ReadDirectoryNotifyFullInformation     0x3
#define global ReadDirectoryNotifyMaximumInformation  0x4