home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Peter Lewis / Finger 1.3.5 / source / Finger / AppGlobals.p next >
Encoding:
Text File  |  1992-02-24  |  774 b   |  37 lines  |  [TEXT/PJMM]

  1. unit AppGlobals;
  2.  
  3. { This code is part of the Finger/Fingerd source code, written in THINK Pascal 4 }
  4. { Copyright 1991-1992 Peter N Lewis }
  5. { If you use this code, you must give me credit in your about box and documentation }
  6.  
  7. interface
  8.  
  9.     const
  10.         myAppType = 'PnLF';
  11.         to_rsrc = 'STR#';
  12.         window_id = 128;
  13.         to_strh_id = 129;
  14.         defaultStrResID = 128;
  15.         pref_read_alert_id = 130;
  16.         pref_write_alert_id = 131;
  17.         outofmem_alert_id = 151;
  18.         pref_dialog_id = 400;
  19.         finger_input_dialog_id = 500;
  20.         finger_output_dialog_id = 600;
  21.         quitBothStrhID = 500;
  22.         quitBothQuitStrhIndex = 1;
  23.         quitBothQuitBothStrhIndex = 2;
  24.  
  25.     const
  26.         M_InternetTo = 140;
  27.         M_RemoveTo = 141;
  28.  
  29.     const
  30.         CFinger = 'fing';
  31.         CXInternet = 'xfng';
  32.         CXRemove = 'xrmv';
  33.         CSaveMenu = 'smnu';
  34.  
  35. implementation
  36.  
  37. end.