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

FINDEX_INFO_LEVELS

列挙型
基底型i4

メンバー 3

名前10進16進
FindExInfoStandard00x0
FindExInfoBasic10x1
FindExInfoMaxInfoLevel20x2

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2
enum FINDEX_INFO_LEVELS : int {
    FindExInfoStandard = 0,
    FindExInfoBasic = 1,
    FindExInfoMaxInfoLevel = 2,
}
#define global FindExInfoStandard     0x0
#define global FindExInfoBasic        0x1
#define global FindExInfoMaxInfoLevel 0x2