home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / c / cbsdk10.zip / ADD-IN.INC < prev    next >
Text File  |  1992-11-06  |  397b  |  15 lines

  1. { Add-In include file for Turbo Pascal programs }
  2.  
  3. Type
  4.   VerString = Array [0..4] of Char;
  5.   InitResult = Boolean;
  6.  
  7. Const
  8.   ait_None = 0;     { ait_None - no timer needed }
  9.   ait_Slow = 1;     { ait_Slow - slow timer (30 sec) }
  10.   ait_Med  = 2;     { ait_Med  - medium timer (2 sec) }
  11.   ait_Fast = 3;     { ait_Fast - fast timer (1/4 sec) }
  12.  
  13.   InitOk    = True;
  14.   InitNotOk = False;
  15.