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.2.0 / packages / ami-extra / src / amsgbox.pas
Size: Mime:
{
    This file is part of the Free Pascal run time library.

    A file in Amiga system run time library.
    Copyright (c) 1998-2003 by Nils Sjoholm
    member of the Amiga RTL development team.

    See the file COPYING.FPC, included in this distribution,
    for details about the copyright.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 **********************************************************************}
{
    History:

    Added the define use_amiga_smartlink.
    13 Jan 2003.

    nils.sjoholm@mailbox.swipnet.se Nils Sjoholm
}

unit AMsgBox;

interface


FUNCTION MessageBox(const tit,txt,gad:RawByteString): LongInt;
FUNCTION MessageBox(const tit,txt,gad:string): LongInt;
function MessageBox(const tit,txt,gad:pchar): LongInt;

implementation

uses
  intuition;

FUNCTION MessageBox(const tit,txt,gad:RawByteString): LongInt;
begin
  MessageBox:=MessageBox(PChar(tit),PChar(txt),PChar(gad));
end;

FUNCTION MessageBox(const tit,txt,gad:string) : LONGint;
begin
  MessageBox := MessageBox(PChar(RawByteString(tit)),PChar(RawByteString(txt)),PChar(RawByteString(gad)));
end;

FUNCTION MessageBox(const tit,txt,gad:pchar) : LONGint;
VAR
  MyStruct : tEasyStruct;
BEGIN
  MyStruct.es_StructSize:=SizeOf(tEasyStruct);
  MyStruct.es_Flags:=0;
  MyStruct.es_Title:=(tit);
  MyStruct.es_TextFormat:=(txt);
  MyStruct.es_GadgetFormat:=(gad);
  MessageBox := EasyRequestArgs(nil,@MyStruct,NIL,NIL);
END;

end.