ホーム › System.Search › DBPARAMIOENUM
DBPARAMIOENUM
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| DBPARAMIO_NOTPARAM | 0 | 0x0 |
| DBPARAMIO_INPUT | 1 | 0x1 |
| DBPARAMIO_OUTPUT | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2enum 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