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

FsrmEventType

列挙型
基底型i4

メンバー 4

名前10進16進
FsrmEventType_Unknown00x0
FsrmEventType_Information10x1
FsrmEventType_Warning20x2
FsrmEventType_Error30x3

各言語での定義

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

typedef enum FsrmEventType : int {
    FsrmEventType_Unknown = 0,
    FsrmEventType_Information = 1,
    FsrmEventType_Warning = 2,
    FsrmEventType_Error = 3
} FsrmEventType;
public enum FsrmEventType : int
{
    FsrmEventType_Unknown = 0,
    FsrmEventType_Information = 1,
    FsrmEventType_Warning = 2,
    FsrmEventType_Error = 3,
}
Public Enum FsrmEventType As Integer
    FsrmEventType_Unknown = 0
    FsrmEventType_Information = 1
    FsrmEventType_Warning = 2
    FsrmEventType_Error = 3
End Enum
import enum

class FsrmEventType(enum.IntEnum):
    FsrmEventType_Unknown = 0
    FsrmEventType_Information = 1
    FsrmEventType_Warning = 2
    FsrmEventType_Error = 3
// FsrmEventType
pub const FsrmEventType_Unknown: i32 = 0;
pub const FsrmEventType_Information: i32 = 1;
pub const FsrmEventType_Warning: i32 = 2;
pub const FsrmEventType_Error: i32 = 3;
// FsrmEventType
const (
	FsrmEventType_Unknown int32 = 0
	FsrmEventType_Information int32 = 1
	FsrmEventType_Warning int32 = 2
	FsrmEventType_Error int32 = 3
)
const
  FsrmEventType_Unknown = 0;
  FsrmEventType_Information = 1;
  FsrmEventType_Warning = 2;
  FsrmEventType_Error = 3;
// FsrmEventType
pub const FsrmEventType_Unknown: i32 = 0;
pub const FsrmEventType_Information: i32 = 1;
pub const FsrmEventType_Warning: i32 = 2;
pub const FsrmEventType_Error: i32 = 3;
const
  FsrmEventType_Unknown* = 0
  FsrmEventType_Information* = 1
  FsrmEventType_Warning* = 2
  FsrmEventType_Error* = 3
enum FsrmEventType : int {
    FsrmEventType_Unknown = 0,
    FsrmEventType_Information = 1,
    FsrmEventType_Warning = 2,
    FsrmEventType_Error = 3,
}
#define global FsrmEventType_Unknown     0x0
#define global FsrmEventType_Information 0x1
#define global FsrmEventType_Warning     0x2
#define global FsrmEventType_Error       0x3