ホーム › System.GroupPolicy › SETTINGSTATUS
SETTINGSTATUS
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| RSOPUnspecified | 0 | 0x0 |
| RSOPApplied | 1 | 0x1 |
| RSOPIgnored | 2 | 0x2 |
| RSOPFailed | 3 | 0x3 |
| RSOPSubsettingFailed | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum SETTINGSTATUS : int {
RSOPUnspecified = 0,
RSOPApplied = 1,
RSOPIgnored = 2,
RSOPFailed = 3,
RSOPSubsettingFailed = 4
} SETTINGSTATUS;public enum SETTINGSTATUS : int
{
RSOPUnspecified = 0,
RSOPApplied = 1,
RSOPIgnored = 2,
RSOPFailed = 3,
RSOPSubsettingFailed = 4,
}Public Enum SETTINGSTATUS As Integer
RSOPUnspecified = 0
RSOPApplied = 1
RSOPIgnored = 2
RSOPFailed = 3
RSOPSubsettingFailed = 4
End Enumimport enum
class SETTINGSTATUS(enum.IntEnum):
RSOPUnspecified = 0
RSOPApplied = 1
RSOPIgnored = 2
RSOPFailed = 3
RSOPSubsettingFailed = 4// SETTINGSTATUS
pub const RSOPUnspecified: i32 = 0;
pub const RSOPApplied: i32 = 1;
pub const RSOPIgnored: i32 = 2;
pub const RSOPFailed: i32 = 3;
pub const RSOPSubsettingFailed: i32 = 4;// SETTINGSTATUS
const (
RSOPUnspecified int32 = 0
RSOPApplied int32 = 1
RSOPIgnored int32 = 2
RSOPFailed int32 = 3
RSOPSubsettingFailed int32 = 4
)const
RSOPUnspecified = 0;
RSOPApplied = 1;
RSOPIgnored = 2;
RSOPFailed = 3;
RSOPSubsettingFailed = 4;// SETTINGSTATUS
pub const RSOPUnspecified: i32 = 0;
pub const RSOPApplied: i32 = 1;
pub const RSOPIgnored: i32 = 2;
pub const RSOPFailed: i32 = 3;
pub const RSOPSubsettingFailed: i32 = 4;const
RSOPUnspecified* = 0
RSOPApplied* = 1
RSOPIgnored* = 2
RSOPFailed* = 3
RSOPSubsettingFailed* = 4enum SETTINGSTATUS : int {
RSOPUnspecified = 0,
RSOPApplied = 1,
RSOPIgnored = 2,
RSOPFailed = 3,
RSOPSubsettingFailed = 4,
}#define global RSOPUnspecified 0x0
#define global RSOPApplied 0x1
#define global RSOPIgnored 0x2
#define global RSOPFailed 0x3
#define global RSOPSubsettingFailed 0x4