home *** CD-ROM | disk | FTP | other *** search
Modula Implementation | 1987-05-17 | 618 b | 30 lines |
- IMPLEMENTATION MODULE MyGlobals;
-
- FROM SYSTEM IMPORT NULL;
- FROM DOSLibrary IMPORT DOSName,DOSBase;
- FROM Libraries IMPORT OpenLibrary;
- FROM Strings IMPORT InitStringModule;
-
- (*
- PART OF Windowed development program for Modula 2
-
- This contains the definitions of all global stuff
-
- Written: 5/8/87 by Greg Browne
-
- Compiles on TDI's Modula-2 Compiler version 2.20a
-
- *)
-
- BEGIN
-
- NullReqPtr := NULL;
-
- (* not needed in this version, since MyType does both these
-
- IF (DOSBase = 0) THEN DOSBase := OpenLibrary(DOSName,0) END;
- InitStringModule;
-
- *)
- END MyGlobals.
-