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.H next >
Text File  |  1992-11-06  |  482b  |  18 lines

  1. // Clysbar Add-In header file for Borland "C" programs
  2.  
  3. typedef char VerString[5];
  4.  
  5. enum AddInTimerType {ait_None,ait_Slow,ait_Med,ait_Fast};
  6.  
  7. //   ait_None (0) - no timer needed
  8. //   ait_Slow (1) - slow timer (30 sec)
  9. //   ait_Med  (2) - medium timer (2 sec)
  10. //   ait_Fast (3) - fast timer (1/4 sec)
  11.  
  12. #define InitOk TRUE
  13. #define InitNotOk FALSE
  14.  
  15. // These defs to match TPascal's Boolean data type, which is byte-length
  16. #define InitResult BYTE
  17. #define BOOLEAN BYTE
  18.