uidesigner/com.nokia.sdt.component.symbian.test/data/srcmapping/SDK/arrayheader.rh
author fturovic <frank.turovich@nokia.com>
Thu, 14 May 2009 16:28:33 -0500
changeset 152 9e83cc047260
parent 0 fb279309251b
permissions -rw-r--r--
bug 8066 - revised image and option description for dynamic variants

#include "subtype.rh"

STRUCT ARRAY_TYPES {
	LONG ints[];
	STRUCT structs[];	// of SUBTYPE
	LLINK refs[];
}

STRUCT ARRAY_TYPES_DEFAULTS {
	LONG ints[] = { 2, 3, 5 };
	STRUCT structs[]; // cannot be initialized as per RSS
	LLINK refs[] = { r_test0, r_test4 };
}

STRUCT STRING_LIST {
	STRUCT strings[];	// LBUF
}

STRUCT LBUF
    {
    LTEXT txt; // leading-byte counted text string
    }

STRUCT ARRAY 
	{
	LLINK items[];
	}

STRUCT ARRAY_EMBEDDED
	{
	STRUCT items[];
	}

STRUCT PALETTE
	{
	LLINK palette_names; // ARRAY
	LLINK palette_colors; // ARRAY
	}