home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
17 Bit Software 3: The Continuation
/
17-Bit_The_Continuation_Disc.iso
/
files
/
nz10.dms
/
nz10.adf
/
Tunnel
/
WBStart.def
< prev
next >
Wrap
Text File
|
1993-12-03
|
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.