ホーム › Storage.FileSystem › FINDEX_INFO_LEVELS
FINDEX_INFO_LEVELS
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| FindExInfoStandard | 0 | 0x0 |
| FindExInfoBasic | 1 | 0x1 |
| FindExInfoMaxInfoLevel | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FINDEX_INFO_LEVELS : int {
FindExInfoStandard = 0,
FindExInfoBasic = 1,
FindExInfoMaxInfoLevel = 2
} FINDEX_INFO_LEVELS;public enum FINDEX_INFO_LEVELS : int
{
FindExInfoStandard = 0,
FindExInfoBasic = 1,
FindExInfoMaxInfoLevel = 2,
}Public Enum FINDEX_INFO_LEVELS As Integer
FindExInfoStandard = 0
FindExInfoBasic = 1
FindExInfoMaxInfoLevel = 2
End Enumimport enum
class FINDEX_INFO_LEVELS(enum.IntEnum):
FindExInfoStandard = 0
FindExInfoBasic = 1
FindExInfoMaxInfoLevel = 2// FINDEX_INFO_LEVELS
pub const FindExInfoStandard: i32 = 0;
pub const FindExInfoBasic: i32 = 1;
pub const FindExInfoMaxInfoLevel: i32 = 2;// FINDEX_INFO_LEVELS
const (
FindExInfoStandard int32 = 0
FindExInfoBasic int32 = 1
FindExInfoMaxInfoLevel int32 = 2
)const
FindExInfoStandard = 0;
FindExInfoBasic = 1;
FindExInfoMaxInfoLevel = 2;// FINDEX_INFO_LEVELS
pub const FindExInfoStandard: i32 = 0;
pub const FindExInfoBasic: i32 = 1;
pub const FindExInfoMaxInfoLevel: i32 = 2;const
FindExInfoStandard* = 0
FindExInfoBasic* = 1
FindExInfoMaxInfoLevel* = 2enum FINDEX_INFO_LEVELS : int {
FindExInfoStandard = 0,
FindExInfoBasic = 1,
FindExInfoMaxInfoLevel = 2,
}#define global FindExInfoStandard 0x0
#define global FindExInfoBasic 0x1
#define global FindExInfoMaxInfoLevel 0x2