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

CSC_InheritanceConfig

列挙型
基底型i4

メンバー 2

名前10進16進
CSC_Inherit00x0
CSC_Ignore10x1

各言語での定義

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

typedef enum CSC_InheritanceConfig : int {
    CSC_Inherit = 0,
    CSC_Ignore = 1
} CSC_InheritanceConfig;
public enum CSC_InheritanceConfig : int
{
    CSC_Inherit = 0,
    CSC_Ignore = 1,
}
Public Enum CSC_InheritanceConfig As Integer
    CSC_Inherit = 0
    CSC_Ignore = 1
End Enum
import enum

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