[go: up one dir, main page]

Menu

[4700cd]: / dwin / dwcommon.pas  Maximize  Restore  History

Download this file

23 lines (17 with data), 263 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
unit dwcommon;
interface
const
DLIBBUILD = 70;
DLIBCOMP = 70;
type
rgba = record
b, g, r, a: byte;
end;
skel = record
x, y, xw, yh: cardinal;
end;
skelInt = record
x, y, xw, yh: integer;
end;
implementation
end.