home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / chip_20022115.iso / amiga / chipgame / scummvm_aga.lha / ScummVM_AGA / src / stdafx.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-01-05  |  1.3 KB  |  72 lines

  1. /*
  2.  * $Id: stdafx.h,v 1.6 2001/11/06 22:59:59 cmatsuoka Exp $
  3.  *
  4.  * $Log: stdafx.h,v $
  5.  * Revision 1.6  2001/11/06 22:59:59  cmatsuoka
  6.  * Re-added changes to allow cygwin and beos cross-compilation.
  7.  *
  8.  */
  9. #if defined(WIN32)
  10.  
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14.  
  15. #define WIN32_LEAN_AND_MEAN        // Exclude rarely-used stuff from Windows headers
  16. #define NOGDICAPMASKS
  17. #define OEMRESOURCE
  18. #define NONLS
  19. #define NOICONS
  20. #define NOMCX
  21. #define NOPROFILER
  22. #define NOKANJI
  23. #define NOSERVICE
  24. #define NOMETAFILE
  25. #define NOCOMM
  26. #define NOCRYPT
  27. #define NOIME
  28. #define NOATOM
  29. #define NOCTLMGR
  30. #define NOCLIPBOARD
  31. #define NOMEMMGR
  32. #define NOSYSMETRICS
  33. #define NOMENUS
  34. #define NOOPENFILE
  35. #define NOWH
  36. #define NOSOUND
  37. #define NODRAWTEXT
  38.  
  39. #include <SDL.h>
  40. #include <windows.h>
  41. #include <stdio.h>
  42. #include <stdlib.h>
  43. #include <string.h>
  44. #include <io.h>
  45. #include <stdarg.h>
  46. #include <fcntl.h>
  47. #include <conio.h>
  48. #include <malloc.h>
  49. #include <assert.h>
  50. #include <mmsystem.h>
  51.  
  52. #else
  53.  
  54. #if defined(NEED_SDL_HEADERS)
  55. #include <SDL.h>
  56. #endif
  57. #include <sys/types.h>
  58. #include <sys/uio.h>
  59. #if !defined (__BEOS__)
  60. #include <unistd.h>
  61. #endif
  62. #include <stdio.h>
  63. #include <fcntl.h>
  64. #include <stdlib.h>
  65. #include <string.h>
  66. #include <stdarg.h>
  67. #include <assert.h>
  68. #include <ctype.h>
  69.  
  70.  
  71. #endif
  72.