diff options
| author | Ludvig Strigeus | 2001-10-09 14:30:12 +0000 |
|---|---|---|
| committer | Ludvig Strigeus | 2001-10-09 14:30:12 +0000 |
| commit | c30932afbe1af874e3a2aeb95fa4ee5de4d6e38e (patch) | |
| tree | 192b56f3908880c5a513a366f616341bcb47056e /stdafx.h | |
| download | scummvm-rg350-c30932afbe1af874e3a2aeb95fa4ee5de4d6e38e.tar.gz scummvm-rg350-c30932afbe1af874e3a2aeb95fa4ee5de4d6e38e.tar.bz2 scummvm-rg350-c30932afbe1af874e3a2aeb95fa4ee5de4d6e38e.zip | |
Initial revision
svn-id: r3408
Diffstat (limited to 'stdafx.h')
| -rw-r--r-- | stdafx.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/stdafx.h b/stdafx.h new file mode 100644 index 0000000000..1416fa4210 --- /dev/null +++ b/stdafx.h @@ -0,0 +1,58 @@ +#if defined(WIN32) + +#if _MSC_VER > 1000 +#pragma once +#endif // _MSC_VER > 1000 + +#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers +#define NOGDICAPMASKS +#define OEMRESOURCE +#define NONLS +#define NOICONS +#define NOMCX +#define NOPROFILER +#define NOKANJI +#define NOSERVICE +#define NOMETAFILE +#define NOCOMM +#define NOCRYPT +#define NOIME +#define NOATOM +#define NOCTLMGR +#define NOCLIPBOARD +#define NOMEMMGR +#define NOSYSMETRICS +#define NOMENUS +#define NOOPENFILE +#define NOWH +#define NOSOUND +#define NODRAWTEXT + +#include <SDL.h> +#include <windows.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <io.h> +#include <stdarg.h> +#include <fcntl.h> +#include <conio.h> +#include <malloc.h> +#include <assert.h> + +#else + +#include <SDL.h> +#include <sys/types.h> +#include <sys/uio.h> +#include <unistd.h> +#include <stdio.h> +#include <fcntl.h> +#include <stdlib.h> +#include <string.h> +#include <stdarg.h> +#include <assert.h> + + + +#endif
\ No newline at end of file |
