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