Win32 API 日本語リファレンス
ホームGraphics.Imaging › WICSectionAccessLevel

WICSectionAccessLevel

列挙型
基底型i4

メンバー 2

名前10進16進
WICSectionAccessLevelRead10x1
WICSectionAccessLevelReadWrite30x3

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum WICSectionAccessLevel : int {
    WICSectionAccessLevelRead = 1,
    WICSectionAccessLevelReadWrite = 3
} WICSectionAccessLevel;
public enum WICSectionAccessLevel : int
{
    WICSectionAccessLevelRead = 1,
    WICSectionAccessLevelReadWrite = 3,
}
Public Enum WICSectionAccessLevel As Integer
    WICSectionAccessLevelRead = 1
    WICSectionAccessLevelReadWrite = 3
End Enum
import enum

class WICSectionAccessLevel(enum.IntEnum):
    WICSectionAccessLevelRead = 1
    WICSectionAccessLevelReadWrite = 3
// WICSectionAccessLevel
pub const WICSectionAccessLevelRead: i32 = 1;
pub const WICSectionAccessLevelReadWrite: i32 = 3;
// WICSectionAccessLevel
const (
	WICSectionAccessLevelRead int32 = 1
	WICSectionAccessLevelReadWrite int32 = 3
)
const
  WICSectionAccessLevelRead = 1;
  WICSectionAccessLevelReadWrite = 3;
// WICSectionAccessLevel
pub const WICSectionAccessLevelRead: i32 = 1;
pub const WICSectionAccessLevelReadWrite: i32 = 3;
const
  WICSectionAccessLevelRead* = 1
  WICSectionAccessLevelReadWrite* = 3
enum WICSectionAccessLevel : int {
    WICSectionAccessLevelRead = 1,
    WICSectionAccessLevelReadWrite = 3,
}
#define global WICSectionAccessLevelRead      0x1
#define global WICSectionAccessLevelReadWrite 0x3