|
static const WCHAR | clsid_keyname [] |
|
static const char | author_valuename [] = "Author" |
|
static const char | friendlyname_valuename [] = "FriendlyName" |
|
static const WCHAR | vendor_valuename [] = {'V','e','n','d','o','r',0} |
|
static const WCHAR | containerformat_valuename [] = {'C','o','n','t','a','i','n','e','r','F','o','r','m','a','t',0} |
|
static const char | version_valuename [] = "Version" |
|
static const char | mimetypes_valuename [] = "MimeTypes" |
|
static const char | extensions_valuename [] = "FileExtensions" |
|
static const WCHAR | formats_keyname [] = {'F','o','r','m','a','t','s',0} |
|
static const WCHAR | patterns_keyname [] = {'P','a','t','t','e','r','n','s',0} |
|
static const WCHAR | instance_keyname [] = {'I','n','s','t','a','n','c','e',0} |
|
static const WCHAR | clsid_valuename [] = {'C','L','S','I','D',0} |
|
static const char | length_valuename [] = "Length" |
|
static const char | position_valuename [] = "Position" |
|
static const char | pattern_valuename [] = "Pattern" |
|
static const char | mask_valuename [] = "Mask" |
|
static const char | endofstream_valuename [] = "EndOfStream" |
|
static const WCHAR | pixelformats_keyname [] = {'P','i','x','e','l','F','o','r','m','a','t','s',0} |
|
static const WCHAR | metadataformat_valuename [] = {'M','e','t','a','d','a','t','a','F','o','r','m','a','t',0} |
|
static const char | specversion_valuename [] = "SpecVersion" |
|
static const char | requiresfullstream_valuename [] = "RequiresFullStream" |
|
static const char | supportspadding_valuename [] = "SupportsPadding" |
|
static const char | requiresfixedsize_valuename [] = "FixedSize" |
|
static const WCHAR | containers_keyname [] = {'C','o','n','t','a','i','n','e','r','s',0} |
|
static const char | dataoffset_valuename [] = "DataOffset" |
|
static const char | bitsperpixel_valuename [] = "BitLength" |
|
static const char | channelcount_valuename [] = "ChannelCount" |
|
static const char | numericrepresentation_valuename [] = "NumericRepresentation" |
|
static const char | supportstransparency_valuename [] = "SupportsTransparency" |
|
static const WCHAR | channelmasks_keyname [] = {'C','h','a','n','n','e','l','M','a','s','k','s',0} |
|
static const BYTE | mask_all [] = {0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff} |
|
static const BYTE | bmp_magic [] = {0x42,0x4d} |
|
static GUID const *const | bmp_formats [] |
|
static struct decoder_pattern const | bmp_patterns [] |
|
static const BYTE | gif87a_magic [6] = "GIF87a" |
|
static const BYTE | gif89a_magic [6] = "GIF89a" |
|
static GUID const *const | gif_formats [] |
|
static struct decoder_pattern const | gif_patterns [] |
|
static const BYTE | ico_magic [] = {00,00,01,00} |
|
static GUID const *const | ico_formats [] |
|
static struct decoder_pattern const | ico_patterns [] |
|
static const BYTE | jpeg_magic [] = {0xff, 0xd8} |
|
static GUID const *const | jpeg_formats [] |
|
static struct decoder_pattern const | jpeg_patterns [] |
|
static const BYTE | png_magic [] = {137,80,78,71,13,10,26,10} |
|
static GUID const *const | png_formats [] |
|
static struct decoder_pattern const | png_patterns [] |
|
static const BYTE | tiff_magic_le [] = {0x49,0x49,42,0} |
|
static const BYTE | tiff_magic_be [] = {0x4d,0x4d,0,42} |
|
static GUID const *const | tiff_decode_formats [] |
|
static struct decoder_pattern const | tiff_patterns [] |
|
static const BYTE | tga_footer_magic [18] = "TRUEVISION-XFILE." |
|
static const BYTE | tga_indexed_magic [18] = {0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0} |
|
static const BYTE | tga_indexed_mask [18] = {0,0xff,0xf7,0,0,0,0,0,0,0,0,0,0,0,0,0,0xff,0xcf} |
|
static const BYTE | tga_truecolor_magic [18] = {0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} |
|
static const BYTE | tga_truecolor_mask [18] = {0,0xff,0xf7,0,0,0,0,0,0,0,0,0,0,0,0,0,0x87,0xc0} |
|
static const BYTE | tga_grayscale_magic [18] = {0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0} |
|
static const BYTE | tga_grayscale_mask [18] = {0,0xff,0xf7,0,0,0,0,0,0,0,0,0,0,0,0,0,0xff,0xcf} |
|
static GUID const *const | tga_formats [] |
|
static struct decoder_pattern const | tga_patterns [] |
|
static struct regsvr_decoder const | decoder_list [] |
|
static GUID const *const | bmp_encode_formats [] |
|
static GUID const *const | png_encode_formats [] |
|
static GUID const *const | tiff_encode_formats [] |
|
static GUID const *const | icns_encode_formats [] |
|
static struct regsvr_encoder const | encoder_list [] |
|
static GUID const *const | converter_formats [] |
|
static struct regsvr_converter const | converter_list [] |
|
static const BYTE | no_magic [1] = { 0 } |
|
static const BYTE | no_mask [1] = { 0 } |
|
static const struct metadata_pattern | ifd_metadata_pattern [] |
|
static const struct reader_containers | ifd_containers [] |
|
static const BYTE | tEXt [] = "tEXt" |
|
static const struct metadata_pattern | pngtext_metadata_pattern [] |
|
static const struct reader_containers | pngtext_containers [] |
|
static const BYTE | gAMA [] = "gAMA" |
|
static const struct metadata_pattern | pnggama_metadata_pattern [] |
|
static const struct reader_containers | pnggama_containers [] |
|
static const BYTE | cHRM [] = "cHRM" |
|
static const struct metadata_pattern | pngchrm_metadata_pattern [] |
|
static const struct reader_containers | pngchrm_containers [] |
|
static const struct metadata_pattern | lsd_metadata_patterns [] |
|
static const struct reader_containers | lsd_containers [] |
|
static const BYTE | imd_magic [] = { 0x2c } |
|
static const struct metadata_pattern | imd_metadata_pattern [] |
|
static const struct reader_containers | imd_containers [] |
|
static const BYTE | gce_magic [] = { 0x21, 0xf9, 0x04 } |
|
static const struct metadata_pattern | gce_metadata_pattern [] |
|
static const struct reader_containers | gce_containers [] |
|
static const BYTE | ape_magic [] = { 0x21, 0xff, 0x0b } |
|
static const struct metadata_pattern | ape_metadata_pattern [] |
|
static const struct reader_containers | ape_containers [] |
|
static const BYTE | gif_comment_magic [] = { 0x21, 0xfe } |
|
static const struct metadata_pattern | gif_comment_metadata_pattern [] |
|
static const struct reader_containers | gif_comment_containers [] |
|
static struct regsvr_metadatareader const | metadatareader_list [] |
|
static BYTE const | channel_mask_1bit [] = { 0x01 } |
|
static BYTE const | channel_mask_2bit [] = { 0x03 } |
|
static BYTE const | channel_mask_4bit [] = { 0x0f } |
|
static BYTE const | channel_mask_8bit [] = { 0xff, 0x00, 0x00, 0x00 } |
|
static BYTE const | channel_mask_8bit2 [] = { 0x00, 0xff, 0x00, 0x00 } |
|
static BYTE const | channel_mask_8bit3 [] = { 0x00, 0x00, 0xff, 0x00 } |
|
static BYTE const | channel_mask_8bit4 [] = { 0x00, 0x00, 0x00, 0xff } |
|
static BYTE const | channel_mask_16bit [] = { 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } |
|
static BYTE const | channel_mask_16bit2 [] = { 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } |
|
static BYTE const | channel_mask_16bit3 [] = { 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00 } |
|
static BYTE const | channel_mask_16bit4 [] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff } |
|
static BYTE const | channel_mask_32bit [] = { 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 } |
|
static BYTE const | channel_mask_128bit1 [] = { 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 } |
|
static BYTE const | channel_mask_128bit2 [] = { 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 } |
|
static BYTE const | channel_mask_128bit3 [] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00 } |
|
static BYTE const | channel_mask_128bit4 [] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff } |
|
static BYTE const | channel_mask_5bit [] = { 0x1f, 0x00 } |
|
static BYTE const | channel_mask_5bit2 [] = { 0xe0, 0x03 } |
|
static BYTE const | channel_mask_5bit3 [] = { 0x00, 0x7c } |
|
static BYTE const | channel_mask_5bit4 [] = { 0x00, 0x80 } |
|
static BYTE const | channel_mask_BGR565_2 [] = { 0xe0, 0x07 } |
|
static BYTE const | channel_mask_BGR565_3 [] = { 0x00, 0xf8 } |
|
static BYTE const *const | channel_masks_1bit [] = { channel_mask_1bit } |
|
static BYTE const *const | channel_masks_2bit [] = { channel_mask_2bit } |
|
static BYTE const *const | channel_masks_4bit [] = { channel_mask_4bit } |
|
static BYTE const *const | channel_masks_8bit [] |
|
static BYTE const *const | channel_masks_16bit [] |
|
static BYTE const *const | channel_masks_32bit [] = { channel_mask_32bit } |
|
static BYTE const *const | channel_masks_128bit [] = { channel_mask_128bit1, channel_mask_128bit2, channel_mask_128bit3, channel_mask_128bit4 } |
|
static BYTE const *const | channel_masks_BGRA5551 [] |
|
static BYTE const *const | channel_masks_BGR565 [] |
|
static struct regsvr_pixelformat const | pixelformat_list [] |
|
static const struct regsvr_category | category_list [] |
|