Win32 API 日本語リファレンス
ホームSystem.GroupPolicy › SETTINGSTATUS

SETTINGSTATUS

列挙型
基底型i4

メンバー 5

名前10進16進
RSOPUnspecified00x0
RSOPApplied10x1
RSOPIgnored20x2
RSOPFailed30x3
RSOPSubsettingFailed40x4

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 4
enum 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