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

DBPARAMIOENUM

列挙型
基底型i4

メンバー 3

名前10進16進
DBPARAMIO_NOTPARAM00x0
DBPARAMIO_INPUT10x1
DBPARAMIO_OUTPUT20x2

各言語での定義

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

typedef enum DBPARAMIOENUM : int {
    DBPARAMIO_NOTPARAM = 0,
    DBPARAMIO_INPUT = 1,
    DBPARAMIO_OUTPUT = 2
} DBPARAMIOENUM;
public enum DBPARAMIOENUM : int
{
    DBPARAMIO_NOTPARAM = 0,
    DBPARAMIO_INPUT = 1,
    DBPARAMIO_OUTPUT = 2,
}
Public Enum DBPARAMIOENUM As Integer
    DBPARAMIO_NOTPARAM = 0
    DBPARAMIO_INPUT = 1
    DBPARAMIO_OUTPUT = 2
End Enum
import enum

class DBPARAMIOENUM(enum.IntEnum):
    DBPARAMIO_NOTPARAM = 0
    DBPARAMIO_INPUT = 1
    DBPARAMIO_OUTPUT = 2
// DBPARAMIOENUM
pub const DBPARAMIO_NOTPARAM: i32 = 0;
pub const DBPARAMIO_INPUT: i32 = 1;
pub const DBPARAMIO_OUTPUT: i32 = 2;
// DBPARAMIOENUM
const (
	DBPARAMIO_NOTPARAM int32 = 0
	DBPARAMIO_INPUT int32 = 1
	DBPARAMIO_OUTPUT int32 = 2
)
const
  DBPARAMIO_NOTPARAM = 0;
  DBPARAMIO_INPUT = 1;
  DBPARAMIO_OUTPUT = 2;
// DBPARAMIOENUM
pub const DBPARAMIO_NOTPARAM: i32 = 0;
pub const DBPARAMIO_INPUT: i32 = 1;
pub const DBPARAMIO_OUTPUT: i32 = 2;
const
  DBPARAMIO_NOTPARAM* = 0
  DBPARAMIO_INPUT* = 1
  DBPARAMIO_OUTPUT* = 2
enum DBPARAMIOENUM : int {
    DBPARAMIO_NOTPARAM = 0,
    DBPARAMIO_INPUT = 1,
    DBPARAMIO_OUTPUT = 2,
}
#define global DBPARAMIO_NOTPARAM 0x0
#define global DBPARAMIO_INPUT    0x1
#define global DBPARAMIO_OUTPUT   0x2