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

GPMStarterGPOType

列挙型
基底型i4

メンバー 2

名前10進16進説明
typeSystem00x0システム スターター グループ ポリシー オブジェクトです。
typeCustom10x1カスタム スターター グループ ポリシー オブジェクトです。

公式ドキュメント

GPMStarterGPOType は、スターター グループ ポリシー オブジェクトがシステム スターター グループ ポリシー オブジェクトであるか、カスタム スターター グループ ポリシー オブジェクトであるかを定義します。

GPMStarterGPOType は、スターター グループ ポリシー オブジェクトがシステム スターター グループ ポリシー オブジェクトであるか、カスタム スターター グループ ポリシー オブジェクトであるかを定義します。

typedef enum {
        typeSystem = 0,
        typeCustom
} GPMStarterGPOType;
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum GPMStarterGPOType : int {
    typeSystem = 0,
    typeCustom = 1
} GPMStarterGPOType;
public enum GPMStarterGPOType : int
{
    typeSystem = 0,
    typeCustom = 1,
}
Public Enum GPMStarterGPOType As Integer
    typeSystem = 0
    typeCustom = 1
End Enum
import enum

class GPMStarterGPOType(enum.IntEnum):
    typeSystem = 0
    typeCustom = 1
// GPMStarterGPOType
pub const typeSystem: i32 = 0;
pub const typeCustom: i32 = 1;
// GPMStarterGPOType
const (
	typeSystem int32 = 0
	typeCustom int32 = 1
)
const
  typeSystem = 0;
  typeCustom = 1;
// GPMStarterGPOType
pub const typeSystem: i32 = 0;
pub const typeCustom: i32 = 1;
const
  typeSystem* = 0
  typeCustom* = 1
enum GPMStarterGPOType : int {
    typeSystem = 0,
    typeCustom = 1,
}
#define global typeSystem 0x0
#define global typeCustom 0x1