ホーム › System.Search › DBPOSITIONFLAGSENUM
DBPOSITIONFLAGSENUM
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| DBPOSITION_OK | 0 | 0x0 |
| DBPOSITION_NOROW | 1 | 0x1 |
| DBPOSITION_BOF | 2 | 0x2 |
| DBPOSITION_EOF | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum DBPOSITIONFLAGSENUM : int {
DBPOSITION_OK = 0,
DBPOSITION_NOROW = 1,
DBPOSITION_BOF = 2,
DBPOSITION_EOF = 3
} DBPOSITIONFLAGSENUM;public enum DBPOSITIONFLAGSENUM : int
{
DBPOSITION_OK = 0,
DBPOSITION_NOROW = 1,
DBPOSITION_BOF = 2,
DBPOSITION_EOF = 3,
}Public Enum DBPOSITIONFLAGSENUM As Integer
DBPOSITION_OK = 0
DBPOSITION_NOROW = 1
DBPOSITION_BOF = 2
DBPOSITION_EOF = 3
End Enumimport enum
class DBPOSITIONFLAGSENUM(enum.IntEnum):
DBPOSITION_OK = 0
DBPOSITION_NOROW = 1
DBPOSITION_BOF = 2
DBPOSITION_EOF = 3// DBPOSITIONFLAGSENUM
pub const DBPOSITION_OK: i32 = 0;
pub const DBPOSITION_NOROW: i32 = 1;
pub const DBPOSITION_BOF: i32 = 2;
pub const DBPOSITION_EOF: i32 = 3;// DBPOSITIONFLAGSENUM
const (
DBPOSITION_OK int32 = 0
DBPOSITION_NOROW int32 = 1
DBPOSITION_BOF int32 = 2
DBPOSITION_EOF int32 = 3
)const
DBPOSITION_OK = 0;
DBPOSITION_NOROW = 1;
DBPOSITION_BOF = 2;
DBPOSITION_EOF = 3;// DBPOSITIONFLAGSENUM
pub const DBPOSITION_OK: i32 = 0;
pub const DBPOSITION_NOROW: i32 = 1;
pub const DBPOSITION_BOF: i32 = 2;
pub const DBPOSITION_EOF: i32 = 3;const
DBPOSITION_OK* = 0
DBPOSITION_NOROW* = 1
DBPOSITION_BOF* = 2
DBPOSITION_EOF* = 3enum DBPOSITIONFLAGSENUM : int {
DBPOSITION_OK = 0,
DBPOSITION_NOROW = 1,
DBPOSITION_BOF = 2,
DBPOSITION_EOF = 3,
}#define global DBPOSITION_OK 0x0
#define global DBPOSITION_NOROW 0x1
#define global DBPOSITION_BOF 0x2
#define global DBPOSITION_EOF 0x3