Skip to content

Commit

Permalink
Default to build SDL without MSVCRT
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 8, 2006
1 parent 14b7438 commit 3bd1d48
Show file tree
Hide file tree
Showing 3 changed files with 561 additions and 17 deletions.
Binary file modified VisualC.zip
Binary file not shown.
10 changes: 8 additions & 2 deletions include/SDL_types.h
Expand Up @@ -27,8 +27,14 @@

#include <sys/types.h>
#ifdef _MSC_VER
/* FIXME!! */
typedef unsigned int size_t;
#ifndef _SIZE_T_DEFINED
#ifdef _WIN64
typedef unsigned __int64 size_t;
#else
typedef _W64 unsigned int size_t;
#endif
#define _SIZE_T_DEFINED
#endif
typedef size_t uintptr_t;
#endif

Expand Down

0 comments on commit 3bd1d48

Please sign in to comment.