Win32 API 日本語リファレンス
ホームGraphics.Gdi › GRAPHICS_MODE

GRAPHICS_MODE

列挙型
基底型i4

メンバー 2

名前10進16進
GM_COMPATIBLE10x1
GM_ADVANCED20x2

各言語での定義

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

typedef enum GRAPHICS_MODE : int {
    GM_COMPATIBLE = 1,
    GM_ADVANCED = 2
} GRAPHICS_MODE;
public enum GRAPHICS_MODE : int
{
    GM_COMPATIBLE = 1,
    GM_ADVANCED = 2,
}
Public Enum GRAPHICS_MODE As Integer
    GM_COMPATIBLE = 1
    GM_ADVANCED = 2
End Enum
import enum

class GRAPHICS_MODE(enum.IntEnum):
    GM_COMPATIBLE = 1
    GM_ADVANCED = 2
// GRAPHICS_MODE
pub const GM_COMPATIBLE: i32 = 1;
pub const GM_ADVANCED: i32 = 2;
// GRAPHICS_MODE
const (
	GM_COMPATIBLE int32 = 1
	GM_ADVANCED int32 = 2
)
const
  GM_COMPATIBLE = 1;
  GM_ADVANCED = 2;
// GRAPHICS_MODE
pub const GM_COMPATIBLE: i32 = 1;
pub const GM_ADVANCED: i32 = 2;
const
  GM_COMPATIBLE* = 1
  GM_ADVANCED* = 2
enum GRAPHICS_MODE : int {
    GM_COMPATIBLE = 1,
    GM_ADVANCED = 2,
}
#define global GM_COMPATIBLE 0x1
#define global GM_ADVANCED   0x2