home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Headers / misckit / Compatability.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-23  |  1.8 KB  |  72 lines

  1.  
  2. // MiscKit compatability header for old programs that used the MiscKit's
  3. // predecessor, "DAYMiscKit", and the "MOKit", written by Mike Ferris
  4. //
  5. //        Written by Don Yacktman Copyright (c) 1993, 1994 by Don Yacktman.
  6. //    
  7.  
  8.  
  9. #ifndef DAYLOCKCOMPAT_H
  10. #define DAYLOCKCOMPAT_H
  11. #define DAYLockFile MiscLockFile
  12. #endif DAYLOCKCOMPAT_H
  13.  
  14. #ifndef DAYLOGCOMPAT_H
  15. #define DAYLOGCOMPAT_H
  16. #define DAYLogFile MiscLogFile
  17. #endif DAYLOGCOMPAT_H
  18.  
  19. #ifndef DAYSTOPCOMPAT_H
  20. #define DAYSTOPCOMPAT_H
  21. #define DAYStopwatch MiscStopwatch
  22. #endif DAYSTOPCOMPAT_H
  23.  
  24. #ifndef DAYTIMECOMPAT_H
  25. #define DAYTIMECOMPAT_H
  26. #define DAYTime MiscTime
  27. #define DAY_UNKNOWN_DOW MISC_TIME_UNKNOWN_DOW
  28. #define DAY_MAX_MICROSECONDS MISC_TIME_MAX_MICROSECONDS
  29. #define DAY_MAX_SECONDS MISC_TIME_MAX_SECONDS
  30. #define DAY_MAX_MINUTES MISC_TIME_MAX_MINUTES
  31. #define DAY_MAX_HOURS MISC_TIME_MAX_HOURS
  32. #define DAY_MAX_DAYS MISC_TIME_MAX_DAYS
  33. #define DAY_MAX_MONTHS MISC_TIME_MAX_MONTHS
  34. #endif DAYTIMECOMPAT_H
  35.  
  36. #ifndef DAYSTRINGCOMPAT_H
  37. #define DAYSTRINGCOMPAT_H
  38. #define DAYString MiscString
  39. #define DAY_LAST MISC_STRING_LAST
  40. #define DAY_FIRST MISC_STRING_FIRST
  41. #endif DAYSTRINGCOMPAT_H
  42.  
  43. #ifndef DAYAPPCOMPAT_H
  44. #define DAYAPPCOMPAT_H
  45. #define DAYOSVersion MiscOSVersion
  46. #endif DAYAPPCOMPAT_H
  47.  
  48.  
  49. // Compatability with the MOKit classes and such
  50.  
  51. #ifndef MOCONTROLLER_H
  52. #define MOCONTROLLER_H
  53. #define MOController MiscNibController
  54. #endif MOCONTROLLER_H
  55.  
  56. #ifndef MOCLASSVCOMPAT_H
  57. #define MOCLASSVCOMPAT_H
  58. #define MOClassVariable MiscClassVariable
  59. #endif MOCLASSVCOMPAT_H
  60.  
  61. #ifndef MOMATRIXCOMPAT_H
  62. #define MOMATRIXCOMPAT_H
  63. #define MOMatrix MiscMatrix
  64. #define MO_lastElement lastElement
  65. #define _ColumnSize_ _MiscColumnSize_
  66. #define ColumnSize MiscColumnSize
  67. #define COLUMNSIZE_DESC MISC_COLUMNSIZE_DESC
  68. #define _RowSize_ _MiscRowSize_
  69. #define RowSize MiscRowSize
  70. #define ROWSIZE_DESC MISC_ROWSIZE_DESC
  71. #endif MOMATRIXCOMPAT_H
  72.