home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-04-20 | 491 b | 32 lines | [TEXT/PJMM] |
- unit BaseGlobals;
-
- { This program was written by Peter N Lewis, Mar 1992 in THINK Pascal 4.0.1 }
-
- interface
-
- const
- global_strh_id = 129;
-
- alert_pattern = 1;
- auto_reply_pattern = 2;
- s_seconds = 3;
- s_minutes = 4;
- s_hours = 5;
- s_days = 6;
-
- var
- quitNow: boolean;
-
- function GetGlobalString (i: integer): str255;
-
- implementation
-
- function GetGlobalString (i: integer): str255;
- var
- s: str255;
- begin
- GetIndString(s, global_strh_id, i);
- GetGlobalString := s;
- end;
-
- end.