ホーム › Storage.Packaging.Opc › OPC_READ_FLAGS
OPC_READ_FLAGS
列挙型フラグメンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| OPC_READ_DEFAULT | 0 | 0x0 |
| OPC_VALIDATE_ON_LOAD | 1 | 0x1 |
| OPC_CACHE_ON_ACCESS | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum OPC_READ_FLAGS : int {
OPC_READ_DEFAULT = 0,
OPC_VALIDATE_ON_LOAD = 1,
OPC_CACHE_ON_ACCESS = 2
} OPC_READ_FLAGS;[Flags]
public enum OPC_READ_FLAGS : int
{
OPC_READ_DEFAULT = 0,
OPC_VALIDATE_ON_LOAD = 1,
OPC_CACHE_ON_ACCESS = 2,
}<Flags>
Public Enum OPC_READ_FLAGS As Integer
OPC_READ_DEFAULT = 0
OPC_VALIDATE_ON_LOAD = 1
OPC_CACHE_ON_ACCESS = 2
End Enumimport enum
class OPC_READ_FLAGS(enum.IntFlag):
OPC_READ_DEFAULT = 0
OPC_VALIDATE_ON_LOAD = 1
OPC_CACHE_ON_ACCESS = 2// OPC_READ_FLAGS (flags)
pub const OPC_READ_DEFAULT: i32 = 0;
pub const OPC_VALIDATE_ON_LOAD: i32 = 1;
pub const OPC_CACHE_ON_ACCESS: i32 = 2;// OPC_READ_FLAGS
const (
OPC_READ_DEFAULT int32 = 0
OPC_VALIDATE_ON_LOAD int32 = 1
OPC_CACHE_ON_ACCESS int32 = 2
)const
OPC_READ_DEFAULT = 0;
OPC_VALIDATE_ON_LOAD = 1;
OPC_CACHE_ON_ACCESS = 2;// OPC_READ_FLAGS
pub const OPC_READ_DEFAULT: i32 = 0;
pub const OPC_VALIDATE_ON_LOAD: i32 = 1;
pub const OPC_CACHE_ON_ACCESS: i32 = 2;const
OPC_READ_DEFAULT* = 0
OPC_VALIDATE_ON_LOAD* = 1
OPC_CACHE_ON_ACCESS* = 2enum OPC_READ_FLAGS : int {
OPC_READ_DEFAULT = 0,
OPC_VALIDATE_ON_LOAD = 1,
OPC_CACHE_ON_ACCESS = 2,
}#define global OPC_READ_DEFAULT 0x0
#define global OPC_VALIDATE_ON_LOAD 0x1
#define global OPC_CACHE_ON_ACCESS 0x2
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。