uidesigner/com.nokia.sdt.component.symbian.test/data/srcmapping/SDK/basicheader.rh
author cawthron
Tue, 24 Mar 2009 22:20:21 -0500
changeset 2 d760517a8095
permissions -rw-r--r--
new
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
cawthron
parents:
diff changeset
     2
STRUCT ONE_STRING {
cawthron
parents:
diff changeset
     3
	BUF<256> text;
cawthron
parents:
diff changeset
     4
	LONG flags;
cawthron
parents:
diff changeset
     5
	WORD stag;
cawthron
parents:
diff changeset
     6
}
cawthron
parents:
diff changeset
     7
cawthron
parents:
diff changeset
     8
STRUCT SIMPLE_TYPES {
cawthron
parents:
diff changeset
     9
	BYTE byte;
cawthron
parents:
diff changeset
    10
	WORD word;
cawthron
parents:
diff changeset
    11
	LONG long;
cawthron
parents:
diff changeset
    12
	TEXT text;
cawthron
parents:
diff changeset
    13
	DOUBLE double;
cawthron
parents:
diff changeset
    14
	LTEXT ltext;
cawthron
parents:
diff changeset
    15
	BUF buf;
cawthron
parents:
diff changeset
    16
	BUF8 buf8;
cawthron
parents:
diff changeset
    17
}
cawthron
parents:
diff changeset
    18
cawthron
parents:
diff changeset
    19
STRUCT SIMPLE_TYPES_DEFAULTS {
cawthron
parents:
diff changeset
    20
	BYTE byte = 1;
cawthron
parents:
diff changeset
    21
	WORD word = 1;
cawthron
parents:
diff changeset
    22
	LONG long = 1;
cawthron
parents:
diff changeset
    23
	TEXT text = "1";
cawthron
parents:
diff changeset
    24
	DOUBLE double = 1.0;
cawthron
parents:
diff changeset
    25
	LTEXT ltext = "1";
cawthron
parents:
diff changeset
    26
	BUF buf = "1";
cawthron
parents:
diff changeset
    27
	BUF8 buf8 = "1";
cawthron
parents:
diff changeset
    28
}
cawthron
parents:
diff changeset
    29
cawthron
parents:
diff changeset
    30
STRUCT RECT {
cawthron
parents:
diff changeset
    31
	LONG x;
cawthron
parents:
diff changeset
    32
	LONG y;
cawthron
parents:
diff changeset
    33
	LONG width;
cawthron
parents:
diff changeset
    34
	LONG height;
cawthron
parents:
diff changeset
    35
}
cawthron
parents:
diff changeset
    36
cawthron
parents:
diff changeset
    37
STRUCT COUNT_STRUCT {
cawthron
parents:
diff changeset
    38
	LONG count;
cawthron
parents:
diff changeset
    39
}
cawthron
parents:
diff changeset
    40
cawthron
parents:
diff changeset
    41
STRUCT TEXT_STRUCT {
cawthron
parents:
diff changeset
    42
	LTEXT8<100> text;
cawthron
parents:
diff changeset
    43
}
cawthron
parents:
diff changeset
    44
cawthron
parents:
diff changeset
    45
STRUCT TWO_REFS {
cawthron
parents:
diff changeset
    46
	LLINK link1;
cawthron
parents:
diff changeset
    47
	LINK link2;
cawthron
parents:
diff changeset
    48
}
cawthron
parents:
diff changeset
    49
cawthron
parents:
diff changeset
    50
STRUCT LBUF 
cawthron
parents:
diff changeset
    51
	{
cawthron
parents:
diff changeset
    52
	LTEXT txt;
cawthron
parents:
diff changeset
    53
	}
cawthron
parents:
diff changeset
    54
	
cawthron
parents:
diff changeset
    55
STRUCT RGB
cawthron
parents:
diff changeset
    56
	{
cawthron
parents:
diff changeset
    57
	BYTE r;
cawthron
parents:
diff changeset
    58
	BYTE g;
cawthron
parents:
diff changeset
    59
	BYTE b;
cawthron
parents:
diff changeset
    60
	}