uidesigner/com.nokia.sdt.component.symbian.test/data/srcmapping/SDK/arrayheader.rh
author Ed Swartz <ed.swartz@nokia.com>
Fri, 28 May 2010 14:29:31 -0500
changeset 1416 809f579bf32c
parent 0 fb279309251b
permissions -rw-r--r--
Add temporary "USB (TCF)" connection type for accessing the target-side Symbian TCF agent.

#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
	}