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

FsrmActionType

列挙型
基底型i4

メンバー 5

名前10進16進説明
FsrmActionType_Unknown00x0アクションの種類が不明です。アクションの種類を指定する目的でこの値を使用しないでください。
FsrmActionType_EventLog10x1アプリケーション イベント ログにイベントを記録します。
FsrmActionType_Email20x2電子メール メッセージを送信します。
FsrmActionType_Command30x3コマンドまたはスクリプトを実行します。
FsrmActionType_Report40x4レポートを生成します。

公式ドキュメント

クォータまたはファイル スクリーンのイベント (クォータの超過、ファイルがファイル スクリーンに違反した場合など) に応じて実行できるアクションを定義します。ファイル管理ジョブからこのアクションをトリガーすることもできます。

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

各言語での定義

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

typedef enum FsrmActionType : int {
    FsrmActionType_Unknown = 0,
    FsrmActionType_EventLog = 1,
    FsrmActionType_Email = 2,
    FsrmActionType_Command = 3,
    FsrmActionType_Report = 4
} FsrmActionType;
public enum FsrmActionType : int
{
    FsrmActionType_Unknown = 0,
    FsrmActionType_EventLog = 1,
    FsrmActionType_Email = 2,
    FsrmActionType_Command = 3,
    FsrmActionType_Report = 4,
}
Public Enum FsrmActionType As Integer
    FsrmActionType_Unknown = 0
    FsrmActionType_EventLog = 1
    FsrmActionType_Email = 2
    FsrmActionType_Command = 3
    FsrmActionType_Report = 4
End Enum
import enum

class FsrmActionType(enum.IntEnum):
    FsrmActionType_Unknown = 0
    FsrmActionType_EventLog = 1
    FsrmActionType_Email = 2
    FsrmActionType_Command = 3
    FsrmActionType_Report = 4
// FsrmActionType
pub const FsrmActionType_Unknown: i32 = 0;
pub const FsrmActionType_EventLog: i32 = 1;
pub const FsrmActionType_Email: i32 = 2;
pub const FsrmActionType_Command: i32 = 3;
pub const FsrmActionType_Report: i32 = 4;
// FsrmActionType
const (
	FsrmActionType_Unknown int32 = 0
	FsrmActionType_EventLog int32 = 1
	FsrmActionType_Email int32 = 2
	FsrmActionType_Command int32 = 3
	FsrmActionType_Report int32 = 4
)
const
  FsrmActionType_Unknown = 0;
  FsrmActionType_EventLog = 1;
  FsrmActionType_Email = 2;
  FsrmActionType_Command = 3;
  FsrmActionType_Report = 4;
// FsrmActionType
pub const FsrmActionType_Unknown: i32 = 0;
pub const FsrmActionType_EventLog: i32 = 1;
pub const FsrmActionType_Email: i32 = 2;
pub const FsrmActionType_Command: i32 = 3;
pub const FsrmActionType_Report: i32 = 4;
const
  FsrmActionType_Unknown* = 0
  FsrmActionType_EventLog* = 1
  FsrmActionType_Email* = 2
  FsrmActionType_Command* = 3
  FsrmActionType_Report* = 4
enum FsrmActionType : int {
    FsrmActionType_Unknown = 0,
    FsrmActionType_EventLog = 1,
    FsrmActionType_Email = 2,
    FsrmActionType_Command = 3,
    FsrmActionType_Report = 4,
}
#define global FsrmActionType_Unknown  0x0
#define global FsrmActionType_EventLog 0x1
#define global FsrmActionType_Email    0x2
#define global FsrmActionType_Command  0x3
#define global FsrmActionType_Report   0x4