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

FlushIntention

列挙型
基底型i4

メンバー 2

名前10進16進
FlushIntentionFlush00x0
FlushIntentionSync10x1

各言語での定義

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

typedef enum FlushIntention : int {
    FlushIntentionFlush = 0,
    FlushIntentionSync = 1
} FlushIntention;
public enum FlushIntention : int
{
    FlushIntentionFlush = 0,
    FlushIntentionSync = 1,
}
Public Enum FlushIntention As Integer
    FlushIntentionFlush = 0
    FlushIntentionSync = 1
End Enum
import enum

class FlushIntention(enum.IntEnum):
    FlushIntentionFlush = 0
    FlushIntentionSync = 1
// FlushIntention
pub const FlushIntentionFlush: i32 = 0;
pub const FlushIntentionSync: i32 = 1;
// FlushIntention
const (
	FlushIntentionFlush int32 = 0
	FlushIntentionSync int32 = 1
)
const
  FlushIntentionFlush = 0;
  FlushIntentionSync = 1;
// FlushIntention
pub const FlushIntentionFlush: i32 = 0;
pub const FlushIntentionSync: i32 = 1;
const
  FlushIntentionFlush* = 0
  FlushIntentionSync* = 1
enum FlushIntention : int {
    FlushIntentionFlush = 0,
    FlushIntentionSync = 1,
}
#define global FlushIntentionFlush 0x0
#define global FlushIntentionSync  0x1