Win32 API 日本語リファレンス
ホームDevices.Display › OUTPUT_COLOR_ENCODING

OUTPUT_COLOR_ENCODING

列挙型
基底型i4

メンバー 5

名前10進16進
OUTPUT_COLOR_ENCODING_RGB00x0
OUTPUT_COLOR_ENCODING_YCBCR44410x1
OUTPUT_COLOR_ENCODING_YCBCR42220x2
OUTPUT_COLOR_ENCODING_YCBCR42030x3
OUTPUT_COLOR_ENCODING_INTENSITY40x4

各言語での定義

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

typedef enum OUTPUT_COLOR_ENCODING : int {
    OUTPUT_COLOR_ENCODING_RGB = 0,
    OUTPUT_COLOR_ENCODING_YCBCR444 = 1,
    OUTPUT_COLOR_ENCODING_YCBCR422 = 2,
    OUTPUT_COLOR_ENCODING_YCBCR420 = 3,
    OUTPUT_COLOR_ENCODING_INTENSITY = 4
} OUTPUT_COLOR_ENCODING;
public enum OUTPUT_COLOR_ENCODING : int
{
    OUTPUT_COLOR_ENCODING_RGB = 0,
    OUTPUT_COLOR_ENCODING_YCBCR444 = 1,
    OUTPUT_COLOR_ENCODING_YCBCR422 = 2,
    OUTPUT_COLOR_ENCODING_YCBCR420 = 3,
    OUTPUT_COLOR_ENCODING_INTENSITY = 4,
}
Public Enum OUTPUT_COLOR_ENCODING As Integer
    OUTPUT_COLOR_ENCODING_RGB = 0
    OUTPUT_COLOR_ENCODING_YCBCR444 = 1
    OUTPUT_COLOR_ENCODING_YCBCR422 = 2
    OUTPUT_COLOR_ENCODING_YCBCR420 = 3
    OUTPUT_COLOR_ENCODING_INTENSITY = 4
End Enum
import enum

class OUTPUT_COLOR_ENCODING(enum.IntEnum):
    OUTPUT_COLOR_ENCODING_RGB = 0
    OUTPUT_COLOR_ENCODING_YCBCR444 = 1
    OUTPUT_COLOR_ENCODING_YCBCR422 = 2
    OUTPUT_COLOR_ENCODING_YCBCR420 = 3
    OUTPUT_COLOR_ENCODING_INTENSITY = 4
// OUTPUT_COLOR_ENCODING
pub const OUTPUT_COLOR_ENCODING_RGB: i32 = 0;
pub const OUTPUT_COLOR_ENCODING_YCBCR444: i32 = 1;
pub const OUTPUT_COLOR_ENCODING_YCBCR422: i32 = 2;
pub const OUTPUT_COLOR_ENCODING_YCBCR420: i32 = 3;
pub const OUTPUT_COLOR_ENCODING_INTENSITY: i32 = 4;
// OUTPUT_COLOR_ENCODING
const (
	OUTPUT_COLOR_ENCODING_RGB int32 = 0
	OUTPUT_COLOR_ENCODING_YCBCR444 int32 = 1
	OUTPUT_COLOR_ENCODING_YCBCR422 int32 = 2
	OUTPUT_COLOR_ENCODING_YCBCR420 int32 = 3
	OUTPUT_COLOR_ENCODING_INTENSITY int32 = 4
)
const
  OUTPUT_COLOR_ENCODING_RGB = 0;
  OUTPUT_COLOR_ENCODING_YCBCR444 = 1;
  OUTPUT_COLOR_ENCODING_YCBCR422 = 2;
  OUTPUT_COLOR_ENCODING_YCBCR420 = 3;
  OUTPUT_COLOR_ENCODING_INTENSITY = 4;
// OUTPUT_COLOR_ENCODING
pub const OUTPUT_COLOR_ENCODING_RGB: i32 = 0;
pub const OUTPUT_COLOR_ENCODING_YCBCR444: i32 = 1;
pub const OUTPUT_COLOR_ENCODING_YCBCR422: i32 = 2;
pub const OUTPUT_COLOR_ENCODING_YCBCR420: i32 = 3;
pub const OUTPUT_COLOR_ENCODING_INTENSITY: i32 = 4;
const
  OUTPUT_COLOR_ENCODING_RGB* = 0
  OUTPUT_COLOR_ENCODING_YCBCR444* = 1
  OUTPUT_COLOR_ENCODING_YCBCR422* = 2
  OUTPUT_COLOR_ENCODING_YCBCR420* = 3
  OUTPUT_COLOR_ENCODING_INTENSITY* = 4
enum OUTPUT_COLOR_ENCODING : int {
    OUTPUT_COLOR_ENCODING_RGB = 0,
    OUTPUT_COLOR_ENCODING_YCBCR444 = 1,
    OUTPUT_COLOR_ENCODING_YCBCR422 = 2,
    OUTPUT_COLOR_ENCODING_YCBCR420 = 3,
    OUTPUT_COLOR_ENCODING_INTENSITY = 4,
}
#define global OUTPUT_COLOR_ENCODING_RGB       0x0
#define global OUTPUT_COLOR_ENCODING_YCBCR444  0x1
#define global OUTPUT_COLOR_ENCODING_YCBCR422  0x2
#define global OUTPUT_COLOR_ENCODING_YCBCR420  0x3
#define global OUTPUT_COLOR_ENCODING_INTENSITY 0x4