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

GPMReportingOptions

列挙型
基底型i4

メンバー 2

名前10進16進説明
opReportLegacy00x0管理用テンプレートの ADM ファイルを使用します。
opReportComments10x1コメントを含めます。

公式ドキュメント

GPMReportingOptions は、グループ ポリシー管理コンソールのレポートに関するオプションを定義します。

GPMReportingOptions は、グループ ポリシー管理コンソールのレポートに関するオプションを定義します。

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

各言語での定義

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

typedef enum GPMReportingOptions : int {
    opReportLegacy = 0,
    opReportComments = 1
} GPMReportingOptions;
public enum GPMReportingOptions : int
{
    opReportLegacy = 0,
    opReportComments = 1,
}
Public Enum GPMReportingOptions As Integer
    opReportLegacy = 0
    opReportComments = 1
End Enum
import enum

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