blob: a6dd179a1737f1e558a3378f5562e96e6369a696 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{$ifdef NDS_INTERFACE}
type
touchPosition = packed record
rawx: cuint16;
rawy: cuint16;
px: cuint16;
py: cuint16;
z1: cuint16;
z2: cuint16;
end;
PtouchPosition = ^touchPosition;
TtouchPosition = touchPosition;
{$endif NDS_INTERFACE}
|