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

WICRawCapabilities

列挙型
基底型i4

メンバー 3

名前10進16進説明
WICRawCapabilityNotSupported00x0この機能はサポートされていません。
WICRawCapabilityGetSupported10x1この機能は取得操作のみをサポートします。
WICRawCapabilityFullySupported20x2この機能は取得操作と設定操作をサポートします。

公式ドキュメント

RAW 画像の機能のサポート状況を指定します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

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

typedef enum WICRawCapabilities : int {
    WICRawCapabilityNotSupported = 0,
    WICRawCapabilityGetSupported = 1,
    WICRawCapabilityFullySupported = 2
} WICRawCapabilities;
public enum WICRawCapabilities : int
{
    WICRawCapabilityNotSupported = 0,
    WICRawCapabilityGetSupported = 1,
    WICRawCapabilityFullySupported = 2,
}
Public Enum WICRawCapabilities As Integer
    WICRawCapabilityNotSupported = 0
    WICRawCapabilityGetSupported = 1
    WICRawCapabilityFullySupported = 2
End Enum
import enum

class WICRawCapabilities(enum.IntEnum):
    WICRawCapabilityNotSupported = 0
    WICRawCapabilityGetSupported = 1
    WICRawCapabilityFullySupported = 2
// WICRawCapabilities
pub const WICRawCapabilityNotSupported: i32 = 0;
pub const WICRawCapabilityGetSupported: i32 = 1;
pub const WICRawCapabilityFullySupported: i32 = 2;
// WICRawCapabilities
const (
	WICRawCapabilityNotSupported int32 = 0
	WICRawCapabilityGetSupported int32 = 1
	WICRawCapabilityFullySupported int32 = 2
)
const
  WICRawCapabilityNotSupported = 0;
  WICRawCapabilityGetSupported = 1;
  WICRawCapabilityFullySupported = 2;
// WICRawCapabilities
pub const WICRawCapabilityNotSupported: i32 = 0;
pub const WICRawCapabilityGetSupported: i32 = 1;
pub const WICRawCapabilityFullySupported: i32 = 2;
const
  WICRawCapabilityNotSupported* = 0
  WICRawCapabilityGetSupported* = 1
  WICRawCapabilityFullySupported* = 2
enum WICRawCapabilities : int {
    WICRawCapabilityNotSupported = 0,
    WICRawCapabilityGetSupported = 1,
    WICRawCapabilityFullySupported = 2,
}
#define global WICRawCapabilityNotSupported   0x0
#define global WICRawCapabilityGetSupported   0x1
#define global WICRawCapabilityFullySupported 0x2