summaryrefslogtreecommitdiff
path: root/include/SDL_types.h
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2006-02-07 18:36:54 +0000
committerSam Lantinga <slouken@libsdl.org>2006-02-07 18:36:54 +0000
commit14b74386372440df590bc62b28b68f2341425add (patch)
treee656dabe1d9804b2ae87efdee49d620135f76539 /include/SDL_types.h
parentf5507859c171e5b1eba9b719cda85d59b60a4948 (diff)
downloadsdl-14b74386372440df590bc62b28b68f2341425add.tar.gz
Fixes for Visual C++ 6.0
Diffstat (limited to 'include/SDL_types.h')
-rw-r--r--include/SDL_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/SDL_types.h b/include/SDL_types.h
index c55b4f88a..08e4b5cff 100644
--- a/include/SDL_types.h
+++ b/include/SDL_types.h
@@ -27,7 +27,9 @@
#include <sys/types.h>
#ifdef _MSC_VER
-#include <crtdefs.h> /* For size_t */
+/* FIXME!! */
+typedef unsigned int size_t;
+typedef size_t uintptr_t;
#endif
/* The number of elements in an array */