home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / Demos / Tools / QC™ 1.1.3 / QCAPI / BadAPPL / BadAPPL src / BadIncludes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-21  |  969 b   |  53 lines  |  [TEXT/R*ch]

  1. /*
  2.     This file is mainly here for MPW builds.  So if we're building
  3.     with CodeWarrior or Think and this file gets #included, these
  4.     files aren't going to be needed again anyway because they'll
  5.     have been defined in the precompiled headers used in those
  6.     environments.
  7. */
  8.  
  9. #ifndef    _H_BadIncludes
  10. #define    _H_BadIncludes
  11.  
  12. #ifndef    __TYPES__
  13. #include <Types.h>
  14. #endif
  15. #ifndef __CONTROLS__
  16. #include <Controls.h>
  17. #endif
  18. #ifndef    __DEVICES__
  19. #include <Devices.h>
  20. #endif
  21. #ifndef    __EVENTS__
  22. #include <Events.h>
  23. #endif
  24. #ifndef    __WINDOWS__
  25. #include <Windows.h>
  26. #endif
  27. #ifndef    __DIALOGS__
  28. #include <Dialogs.h>
  29. #endif
  30. #ifndef    __FONTS__
  31. #include <Fonts.h>
  32. #endif
  33. #ifndef    __MENUS__
  34. #include <Menus.h>
  35. #endif
  36. #ifndef    __OSEVENTS__
  37. #include <OSEvents.h>
  38. #endif
  39. #ifndef    __QUICKDRAW__
  40. #include <Quickdraw.h>
  41. #endif
  42. #ifndef    __RESOURCES__
  43. #include <Resources.h>
  44. #endif
  45. #ifndef    __TOOLUTILS__
  46. #include <ToolUtils.h>
  47. #endif
  48. #ifndef    __SEGLOAD__
  49. #include <SegLoad.h>
  50. #endif
  51.  
  52. #endif    //_H_BadIncludes
  53.