ホーム › Storage.FileServerResourceManager › FsrmRuleType
FsrmRuleType
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| FsrmRuleType_Unknown | 0 | 0x0 | ルールが不明であることを示します。この種類は使用しないでください。 |
| FsrmRuleType_Classification | 1 | 0x1 | 分類モジュールがファイルにどのように影響するかを定義するルールです。 |
| FsrmRuleType_Generic | 2 | 0x2 | 内部使用のみです。 |
公式ドキュメント
定義できるルールの種類を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 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 Enumimport 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* = 2enum 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