home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d1xx
/
d174
/
tunnel.lha
/
Tunnel
/
WBStart.def
< prev
next >
Wrap
Text File
|
1989-02-04
|
782b
|
34 lines
(* USED IN DuM2.mod - Thanks *)
(*
This module determines if a task is running from
Workbench. If so, a procedure is provided to exit
properly without loosing memory.
Created: 10/27/86 by Richie Bielak
Modified:
Copyright (c) 1986 by Richie Bielak.
This program may be freely copied, but please leave
my name in. Thanks. Richie.
*)
DEFINITION MODULE WBStart;
FROM SYSTEM IMPORT ADDRESS;
(* Get WB Startup message - this procedure will return
NULL if the program is running from CLI.
*)
PROCEDURE GetWBStartUpMsg () : ADDRESS;
(* Call to this procedure returns the startup message.
Call this procedure just before exiting your program.
*)
PROCEDURE ReturnWBStartUpMsg ();
END WBStart.