Win32 API 日本語リファレンス
ホームStorage.Packaging.Opc › OPC_READ_FLAGS

OPC_READ_FLAGS

列挙型フラグ
基底型i4

メンバー 3

名前10進16進
OPC_READ_DEFAULT00x0
OPC_VALIDATE_ON_LOAD10x1
OPC_CACHE_ON_ACCESS20x2

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2
enum 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)。