home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Vectronix 2
/
VECTRONIX2.iso
/
FILES_07
/
ACS_PRO.LZH
/
ASC
/
DEMO_PP.PRG
/
HELLO
/
HELLO1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-01-13
|
403b
|
24 lines
Program Hello1;
uses GEM, ACS;
{$I HELLO1.I}
Function ACSinit: Integer;
Var
proto: AwindowPtr;
strng: packed array [0..11] of char;
di: Integer;
Begin
proto := get_protocol^. create (NIL);
If (proto <> NIL) Then Begin
di := proto^. open (proto);
strng := 'Hello World'#0;
wputs (@strng, proto);
End;
ACSinit := OK;
End;
Begin
start_acs (ACSinit, @ACSdescr);
End.