(svn r1523) -Fix: somehow mousewheel was disabled on windows using SDL; reenabled again

-Fix: added missing CDECL to ellipsis functions and changed VS6 project file to use _cdecl calling conventions (thx tamlin)
This commit is contained in:
darkvater
2005-01-15 15:48:05 +00:00
parent 0c01db5255
commit 1d127765c3
6 changed files with 10 additions and 11 deletions

View File

@@ -105,8 +105,8 @@
# define inline _inline
# define CDECL _cdecl
# define NOT_REACHED() _assume(0)
int snprintf(char *str, size_t size, const char *format, ...);
int vsnprintf(char *str, size_t size, const char *format, va_list ap);
int CDECL snprintf(char *str, size_t size, const char *format, ...);
int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
# undef TTD_ALIGNMENT_4
# undef TTD_ALIGNMENT_2
# define GCC_PACK