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

DBSTATUSENUM20

列挙型
基底型i4

メンバー 2

名前10進16進
MDSTATUS_S_CELLEMPTY140xE
DBSTATUS_S_IGNORE150xF

各言語での定義

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

typedef enum DBSTATUSENUM20 : int {
    MDSTATUS_S_CELLEMPTY = 14,
    DBSTATUS_S_IGNORE = 15
} DBSTATUSENUM20;
public enum DBSTATUSENUM20 : int
{
    MDSTATUS_S_CELLEMPTY = 14,
    DBSTATUS_S_IGNORE = 15,
}
Public Enum DBSTATUSENUM20 As Integer
    MDSTATUS_S_CELLEMPTY = 14
    DBSTATUS_S_IGNORE = 15
End Enum
import enum

class DBSTATUSENUM20(enum.IntEnum):
    MDSTATUS_S_CELLEMPTY = 14
    DBSTATUS_S_IGNORE = 15
// DBSTATUSENUM20
pub const MDSTATUS_S_CELLEMPTY: i32 = 14;
pub const DBSTATUS_S_IGNORE: i32 = 15;
// DBSTATUSENUM20
const (
	MDSTATUS_S_CELLEMPTY int32 = 14
	DBSTATUS_S_IGNORE int32 = 15
)
const
  MDSTATUS_S_CELLEMPTY = 14;
  DBSTATUS_S_IGNORE = 15;
// DBSTATUSENUM20
pub const MDSTATUS_S_CELLEMPTY: i32 = 14;
pub const DBSTATUS_S_IGNORE: i32 = 15;
const
  MDSTATUS_S_CELLEMPTY* = 14
  DBSTATUS_S_IGNORE* = 15
enum DBSTATUSENUM20 : int {
    MDSTATUS_S_CELLEMPTY = 14,
    DBSTATUS_S_IGNORE = 15,
}
#define global MDSTATUS_S_CELLEMPTY 0xE
#define global DBSTATUS_S_IGNORE    0xF