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