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

FsrmEventType

列挙型
基底型i4

メンバー 4

名前10進16進説明
FsrmEventType_Unknown00x0イベントの種類が不明です。このフラグは使用しないでください。
FsrmEventType_Information10x1イベントは情報イベントです。
FsrmEventType_Warning20x2イベントは警告イベントです。
FsrmEventType_Error30x3イベントはエラー イベントです。

公式ドキュメント

イベント ログ アクション ( FsrmActionType を参照) がログに記録できるイベントの種類を定義します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。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