fix mingw32 build

This commit is contained in:
Ludwig Nussel 2010-03-19 08:59:17 +00:00
parent 05d7ce9c18
commit 2728dc403a
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ typedef short INT16;
/* MinGW basetsd.h defines INT32 - don't redefine it */
#ifndef __WIN64
#if !(defined __MINGW32__ && defined _BASETSD_H)
#if !(defined __MINGW32__ && (defined _BASETSD_H || defined _BASETSD_H_))
typedef long INT32;
#endif
#endif