ホーム › Networking.ActiveDirectory › DSROLE_OPERATION_STATE
DSROLE_OPERATION_STATE
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| DsRoleOperationIdle | 0 | 0x0 | コンピューターはアイドル状態です。 |
| DsRoleOperationActive | 1 | 0x1 | コンピューターはアクティブです。 |
| DsRoleOperationNeedReboot | 2 | 0x2 | コンピューターの再起動が必要です。 |
公式ドキュメント
DSROLE_OPERATION_STATE 列挙型は、DSROLE_OPERATION_STATE_INFO 構造体と共に使用され、コンピューターの動作状態を示します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 DSROLE_OPERATION_STATE : int {
DsRoleOperationIdle = 0,
DsRoleOperationActive = 1,
DsRoleOperationNeedReboot = 2
} DSROLE_OPERATION_STATE;public enum DSROLE_OPERATION_STATE : int
{
DsRoleOperationIdle = 0,
DsRoleOperationActive = 1,
DsRoleOperationNeedReboot = 2,
}Public Enum DSROLE_OPERATION_STATE As Integer
DsRoleOperationIdle = 0
DsRoleOperationActive = 1
DsRoleOperationNeedReboot = 2
End Enumimport enum
class DSROLE_OPERATION_STATE(enum.IntEnum):
DsRoleOperationIdle = 0
DsRoleOperationActive = 1
DsRoleOperationNeedReboot = 2// DSROLE_OPERATION_STATE
pub const DsRoleOperationIdle: i32 = 0;
pub const DsRoleOperationActive: i32 = 1;
pub const DsRoleOperationNeedReboot: i32 = 2;// DSROLE_OPERATION_STATE
const (
DsRoleOperationIdle int32 = 0
DsRoleOperationActive int32 = 1
DsRoleOperationNeedReboot int32 = 2
)const
DsRoleOperationIdle = 0;
DsRoleOperationActive = 1;
DsRoleOperationNeedReboot = 2;// DSROLE_OPERATION_STATE
pub const DsRoleOperationIdle: i32 = 0;
pub const DsRoleOperationActive: i32 = 1;
pub const DsRoleOperationNeedReboot: i32 = 2;const
DsRoleOperationIdle* = 0
DsRoleOperationActive* = 1
DsRoleOperationNeedReboot* = 2enum DSROLE_OPERATION_STATE : int {
DsRoleOperationIdle = 0,
DsRoleOperationActive = 1,
DsRoleOperationNeedReboot = 2,
}#define global DsRoleOperationIdle 0x0
#define global DsRoleOperationActive 0x1
#define global DsRoleOperationNeedReboot 0x2