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

LockModes

列挙型
基底型i4

メンバー 2

名前10進16進
LockSetGet00x0
LockMethod10x1

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 1
enum LockModes : int {
    LockSetGet = 0,
    LockMethod = 1,
}
#define global LockSetGet 0x0
#define global LockMethod 0x1