home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1996-02-15 | 782 b | 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.
-