blob: c8aca89b2101ea71341355cbb913b5afe8816e13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
unit uw6203;
{$mode delphi}
interface
const
CM_TEST = $B000 + 18;
type
TMessage = packed record
Msg: Cardinal;
case Integer of
0: (
WParam: Longint;
LParam: Longint;
Result: Longint);
1: (
WParamLo: Word;
WParamHi: Word;
LParamLo: Word;
LParamHi: Word;
ResultLo: Word;
ResultHi: Word);
end;
TTest = class
private
procedure CMTest(var Msg: TMessage); message CM_TEST;
end;
var
Err : boolean;
implementation
procedure TTest.CMTest(var Msg: TMessage);
begin
WriteLn('TTest.CMTest');
err:=false;
end;
end.
|