Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbs / uw6203.pp
Size: Mime:
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.