home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-04-20 | 1.1 KB | 56 lines | [TEXT/PJMM] |
- unit AppGlobals;
-
- { This program was written by Peter N Lewis, Mar 1992 in THINK Pascal 4.0.1 }
-
- interface
-
- const
- myAppType = 'tALK';
- pref_rsrc = 'PREF';
- pref_id = 128;
- defaultStrResID = 128;
- window_id = 128;
- pref_read_alert_id = 130;
- pref_write_alert_id = 131;
- abort_alert_id = 136;
- PermDeniedAlertID = 137;
- RefusedAlertID = 138;
- pref_dialog_id = 400;
- talk_input_dialog_id = 500;
- talk_output_dialog_id = 600;
- status_dialog_id = 700;
- sicn_id = 128;
- grow_sicn_id = 128;
- grow_sicn_index = 2;
- quitBothStrhID = 130;
- quitBothQuitStrhIndex = 1;
- quitBothQuitBothStrhIndex = 2;
- statusButtonsStrhID = 131;
- statusAbortStrIndex = 1;
- statusHangUpStrIndex = 2;
- statusRemoveStrIndex = 3;
- statusConnectStrIndex = 4;
- statusRingAgainStrIndex = 5;
- statusToFrontStrIndex = 6;
- savedWindowResType = 'S_WP';
-
- const
- M_InternetTo = 140;
- M_RemoveTo = 141;
-
- to_rsrc = 'STR#';
- to_strh_id = 129;
-
- const
- CTalk = 'talk';
- CXInternet = 'xtlk';
- CXRemove = 'xrmv';
- CSaveMenu = 'smnu';
- CStatus = 'stat';
-
- var
- my_machine_addr: longInt;
-
- implementation
-
- end.