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

FsrmRuleType

列挙型
基底型i4

メンバー 3

名前10進16進
FsrmRuleType_Unknown00x0
FsrmRuleType_Classification10x1
FsrmRuleType_Generic20x2

各言語での定義

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

typedef enum FsrmRuleType : int {
    FsrmRuleType_Unknown = 0,
    FsrmRuleType_Classification = 1,
    FsrmRuleType_Generic = 2
} FsrmRuleType;
public enum FsrmRuleType : int
{
    FsrmRuleType_Unknown = 0,
    FsrmRuleType_Classification = 1,
    FsrmRuleType_Generic = 2,
}
Public Enum FsrmRuleType As Integer
    FsrmRuleType_Unknown = 0
    FsrmRuleType_Classification = 1
    FsrmRuleType_Generic = 2
End Enum
import enum

class FsrmRuleType(enum.IntEnum):
    FsrmRuleType_Unknown = 0
    FsrmRuleType_Classification = 1
    FsrmRuleType_Generic = 2
// FsrmRuleType
pub const FsrmRuleType_Unknown: i32 = 0;
pub const FsrmRuleType_Classification: i32 = 1;
pub const FsrmRuleType_Generic: i32 = 2;
// FsrmRuleType
const (
	FsrmRuleType_Unknown int32 = 0
	FsrmRuleType_Classification int32 = 1
	FsrmRuleType_Generic int32 = 2
)
const
  FsrmRuleType_Unknown = 0;
  FsrmRuleType_Classification = 1;
  FsrmRuleType_Generic = 2;
// FsrmRuleType
pub const FsrmRuleType_Unknown: i32 = 0;
pub const FsrmRuleType_Classification: i32 = 1;
pub const FsrmRuleType_Generic: i32 = 2;
const
  FsrmRuleType_Unknown* = 0
  FsrmRuleType_Classification* = 1
  FsrmRuleType_Generic* = 2
enum FsrmRuleType : int {
    FsrmRuleType_Unknown = 0,
    FsrmRuleType_Classification = 1,
    FsrmRuleType_Generic = 2,
}
#define global FsrmRuleType_Unknown        0x0
#define global FsrmRuleType_Classification 0x1
#define global FsrmRuleType_Generic        0x2