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

D2D1_DEBUG_LEVEL

列挙型
基底型i4

メンバー 4

名前10進16進
D2D1_DEBUG_LEVEL_NONE00x0
D2D1_DEBUG_LEVEL_ERROR10x1
D2D1_DEBUG_LEVEL_WARNING20x2
D2D1_DEBUG_LEVEL_INFORMATION30x3

各言語での定義

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

typedef enum D2D1_DEBUG_LEVEL : int {
    D2D1_DEBUG_LEVEL_NONE = 0,
    D2D1_DEBUG_LEVEL_ERROR = 1,
    D2D1_DEBUG_LEVEL_WARNING = 2,
    D2D1_DEBUG_LEVEL_INFORMATION = 3
} D2D1_DEBUG_LEVEL;
public enum D2D1_DEBUG_LEVEL : int
{
    D2D1_DEBUG_LEVEL_NONE = 0,
    D2D1_DEBUG_LEVEL_ERROR = 1,
    D2D1_DEBUG_LEVEL_WARNING = 2,
    D2D1_DEBUG_LEVEL_INFORMATION = 3,
}
Public Enum D2D1_DEBUG_LEVEL As Integer
    D2D1_DEBUG_LEVEL_NONE = 0
    D2D1_DEBUG_LEVEL_ERROR = 1
    D2D1_DEBUG_LEVEL_WARNING = 2
    D2D1_DEBUG_LEVEL_INFORMATION = 3
End Enum
import enum

class D2D1_DEBUG_LEVEL(enum.IntEnum):
    D2D1_DEBUG_LEVEL_NONE = 0
    D2D1_DEBUG_LEVEL_ERROR = 1
    D2D1_DEBUG_LEVEL_WARNING = 2
    D2D1_DEBUG_LEVEL_INFORMATION = 3
// D2D1_DEBUG_LEVEL
pub const D2D1_DEBUG_LEVEL_NONE: i32 = 0;
pub const D2D1_DEBUG_LEVEL_ERROR: i32 = 1;
pub const D2D1_DEBUG_LEVEL_WARNING: i32 = 2;
pub const D2D1_DEBUG_LEVEL_INFORMATION: i32 = 3;
// D2D1_DEBUG_LEVEL
const (
	D2D1_DEBUG_LEVEL_NONE int32 = 0
	D2D1_DEBUG_LEVEL_ERROR int32 = 1
	D2D1_DEBUG_LEVEL_WARNING int32 = 2
	D2D1_DEBUG_LEVEL_INFORMATION int32 = 3
)
const
  D2D1_DEBUG_LEVEL_NONE = 0;
  D2D1_DEBUG_LEVEL_ERROR = 1;
  D2D1_DEBUG_LEVEL_WARNING = 2;
  D2D1_DEBUG_LEVEL_INFORMATION = 3;
// D2D1_DEBUG_LEVEL
pub const D2D1_DEBUG_LEVEL_NONE: i32 = 0;
pub const D2D1_DEBUG_LEVEL_ERROR: i32 = 1;
pub const D2D1_DEBUG_LEVEL_WARNING: i32 = 2;
pub const D2D1_DEBUG_LEVEL_INFORMATION: i32 = 3;
const
  D2D1_DEBUG_LEVEL_NONE* = 0
  D2D1_DEBUG_LEVEL_ERROR* = 1
  D2D1_DEBUG_LEVEL_WARNING* = 2
  D2D1_DEBUG_LEVEL_INFORMATION* = 3
enum D2D1_DEBUG_LEVEL : int {
    D2D1_DEBUG_LEVEL_NONE = 0,
    D2D1_DEBUG_LEVEL_ERROR = 1,
    D2D1_DEBUG_LEVEL_WARNING = 2,
    D2D1_DEBUG_LEVEL_INFORMATION = 3,
}
#define global D2D1_DEBUG_LEVEL_NONE        0x0
#define global D2D1_DEBUG_LEVEL_ERROR       0x1
#define global D2D1_DEBUG_LEVEL_WARNING     0x2
#define global D2D1_DEBUG_LEVEL_INFORMATION 0x3