00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 STRUCT DECODER_INFO
00020 {
00021 LTEXT decoder_name;
00022 LTEXT image_format;
00023 LTEXT image_dimensions;
00024 LTEXT image_depth[];
00025 LTEXT image_details;
00026 }
00027
00028 RESOURCE DECODER_INFO theDecoderInfo
00029 {
00030 decoder_name = "Decoder: Example Png decoder V1.0";
00031 image_format = "Format: Png";
00032 image_dimensions = "Dimensions: %dx%d pixels";
00033 image_depth = {"Depth: %dbpp b&w", "Depth: %dbpp colour"};
00034 image_details = "Details: Image includes alpha channel";
00035 }
00036