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

FsrmRuleType

列挙型
基底型i4

メンバー 3

名前10進16進説明
FsrmRuleType_Unknown00x0ルールが不明であることを示します。この種類は使用しないでください。
FsrmRuleType_Classification10x1分類モジュールがファイルにどのように影響するかを定義するルールです。
FsrmRuleType_Generic20x2内部使用のみです。

公式ドキュメント

定義できるルールの種類を定義します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
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 Enum
import 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* = 2
enum 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