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

WICProgressNotification

列挙型
基底型i4

メンバー 4

名前10進16進
WICProgressNotificationBegin655360x10000
WICProgressNotificationEnd1310720x20000
WICProgressNotificationFrequent2621440x40000
WICProgressNotificationAll-655360xFFFF0000

各言語での定義

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

typedef enum WICProgressNotification : int {
    WICProgressNotificationBegin = 65536,
    WICProgressNotificationEnd = 131072,
    WICProgressNotificationFrequent = 262144,
    WICProgressNotificationAll = -65536
} WICProgressNotification;
public enum WICProgressNotification : int
{
    WICProgressNotificationBegin = 65536,
    WICProgressNotificationEnd = 131072,
    WICProgressNotificationFrequent = 262144,
    WICProgressNotificationAll = -65536,
}
Public Enum WICProgressNotification As Integer
    WICProgressNotificationBegin = 65536
    WICProgressNotificationEnd = 131072
    WICProgressNotificationFrequent = 262144
    WICProgressNotificationAll = -65536
End Enum
import enum

class WICProgressNotification(enum.IntEnum):
    WICProgressNotificationBegin = 65536
    WICProgressNotificationEnd = 131072
    WICProgressNotificationFrequent = 262144
    WICProgressNotificationAll = -65536
// WICProgressNotification
pub const WICProgressNotificationBegin: i32 = 65536;
pub const WICProgressNotificationEnd: i32 = 131072;
pub const WICProgressNotificationFrequent: i32 = 262144;
pub const WICProgressNotificationAll: i32 = -65536;
// WICProgressNotification
const (
	WICProgressNotificationBegin int32 = 65536
	WICProgressNotificationEnd int32 = 131072
	WICProgressNotificationFrequent int32 = 262144
	WICProgressNotificationAll int32 = -65536
)
const
  WICProgressNotificationBegin = 65536;
  WICProgressNotificationEnd = 131072;
  WICProgressNotificationFrequent = 262144;
  WICProgressNotificationAll = -65536;
// WICProgressNotification
pub const WICProgressNotificationBegin: i32 = 65536;
pub const WICProgressNotificationEnd: i32 = 131072;
pub const WICProgressNotificationFrequent: i32 = 262144;
pub const WICProgressNotificationAll: i32 = -65536;
const
  WICProgressNotificationBegin* = 65536
  WICProgressNotificationEnd* = 131072
  WICProgressNotificationFrequent* = 262144
  WICProgressNotificationAll* = -65536
enum WICProgressNotification : int {
    WICProgressNotificationBegin = 65536,
    WICProgressNotificationEnd = 131072,
    WICProgressNotificationFrequent = 262144,
    WICProgressNotificationAll = -65536,
}
#define global WICProgressNotificationBegin    0x10000
#define global WICProgressNotificationEnd      0x20000
#define global WICProgressNotificationFrequent 0x40000
#define global WICProgressNotificationAll      0xFFFF0000