lowlevellibsandfws/apputils/tsrc/T_COMPRESSED_UNICODE_2.RPP
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 STRUCT RSS_SIGNATURE
       
     2 	{
       
     3 	LONG signature=4;
       
     4 	SRLINK self;
       
     5 	}
       
     6 
       
     7 STRUCT TBUF
       
     8 	{
       
     9 	BUF buf;
       
    10 	}
       
    11 
       
    12 STRUCT SIMPLE
       
    13 	{
       
    14 	WORD word=0x3176;
       
    15 	}
       
    16 
       
    17 STRUCT WITH_BYTE_COUNT BYTE
       
    18 	{
       
    19 	LONG integer;
       
    20 	STRUCT struct; // a WITHOUT_BYTE_COUNT or a SIMPLE
       
    21 	}
       
    22 
       
    23 STRUCT WITHOUT_BYTE_COUNT
       
    24 	{
       
    25 	LONG integer;
       
    26 	STRUCT struct; // a WITH_BYTE_COUNT or a SIMPLE
       
    27 	}
       
    28 
       
    29 STRUCT LTEXT_ARRAY
       
    30 	{
       
    31 	LEN BYTE LTEXT array[];
       
    32 	}
       
    33 
       
    34 NAME EDAC
       
    35 
       
    36 RESOURCE RSS_SIGNATURE t_compressed_unicode_2_resource_1 {}
       
    37 
       
    38 RESOURCE TBUF t_compressed_unicode_2_resource_2 {buf="My program is cool";}
       
    39 
       
    40 RESOURCE TBUF t_compressed_unicode_2_resource_3 {buf="z:\\system\\data\\eikon.mbm";}
       
    41 
       
    42 RESOURCE WITHOUT_BYTE_COUNT t_compressed_unicode_2_resource_4
       
    43 	{
       
    44 	integer=9174804;
       
    45 	struct=WITH_BYTE_COUNT{integer=-6208493; struct=SIMPLE{};};
       
    46 	}
       
    47 
       
    48 RESOURCE WITH_BYTE_COUNT t_compressed_unicode_2_resource_5
       
    49 	{
       
    50 	integer=-120727;
       
    51 	struct=WITHOUT_BYTE_COUNT{integer=-82385253; struct=SIMPLE{};};
       
    52 	}
       
    53 
       
    54 RESOURCE LTEXT_ARRAY t_compressed_unicode_2_resource_6
       
    55 	{
       
    56 	array=
       
    57 		{
       
    58 		"z:\\system\\data\\uikon.mbm",
       
    59 		"z:\\system\\apps\\my_program\\my_program.mbm"
       
    60 		};
       
    61 	}
       
    62