ホーム › Storage.FileServerResourceManager › FsrmEventType
FsrmEventType
列挙型メンバー 4
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| FsrmEventType_Unknown | 0 | 0x0 | イベントの種類が不明です。このフラグは使用しないでください。 |
| FsrmEventType_Information | 1 | 0x1 | イベントは情報イベントです。 |
| FsrmEventType_Warning | 2 | 0x2 | イベントは警告イベントです。 |
| FsrmEventType_Error | 3 | 0x3 | イベントはエラー イベントです。 |
公式ドキュメント
イベント ログ アクション ( FsrmActionType を参照) がログに記録できるイベントの種類を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
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 Enumimport 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* = 3enum 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