Path: blob/master/psx/mednadisc/emuware/msvc/changelog.txt
2 views
------------------------------------------------------------------------1r26 | 2009-10-02 13:36:47 +0400 | 2 lines23[Issue 5] Change <stdint.h> to "stdint.h" to let compiler search for it in local directory.45------------------------------------------------------------------------6r25 | 2009-09-17 23:46:49 +0400 | 2 lines78[Issue 4] Fix incorrect int8_t behaviour if compiled with /J flag.910------------------------------------------------------------------------11r24 | 2009-05-13 14:53:48 +0400 | 2 lines1213Forgot about #ifdef __cplusplus guard around 'extern "C"', so inclusion to C files has been broken.1415------------------------------------------------------------------------16r23 | 2009-05-12 01:27:45 +0400 | 3 lines1718[Issue 2] Always wrap <wchar��� with external "C" {}.19It turns out that not only Visual Studio 6 requires this, but also newer versions when compiling for ARM.2021------------------------------------------------------------------------22r22 | 2009-05-11 22:22:15 +0400 | 3 lines2324[Issue 3] Visual Studio 6 and Embedded Visual C++ 4 doesn't realize that, e.g. char has the same size as __int8 so we give up on __intX for them.25his should close Issue 3 in issue tracker.2627------------------------------------------------------------------------28r21 | 2008-07-17 09:47:22 +0400 | 4 lines2930Get rid of these compiler warnings when compiling for 32-bit:31warning C4311: 'type cast' : pointer truncation from 'void *' to 'uintptr_t'32warning C4312: 'type cast' : conversion from 'uintptr_t' to 'const void *' of greater size3334------------------------------------------------------------------------35r20 | 2007-10-09 16:54:27 +0400 | 2 lines3637Better C99 conformance: macros for format specifiers should only be included in C++ implementations if __STDC_FORMAT_MACROS is defined before <inttypes.h> is included.3839------------------------------------------------------------------------40r19 | 2007-07-04 02:14:40 +0400 | 3 lines4142Explicitly cast to appropriate type INT8_MIN, INT16_MIN, INT32_MIN and INT64_MIN constants.43Due to their unusual definition in Visual Studio headers (-_Ix_MAX-1) they are propagated to int and thus do not have expected type, causing VS6 strict compiler to claim about type inconsistency.4445------------------------------------------------------------------------46r18 | 2007-06-26 16:53:23 +0400 | 2 lines4748Better handling of (U)INTx_C macros - now they generate constants of exact width.4950------------------------------------------------------------------------51r17 | 2007-03-29 20:16:14 +0400 | 2 lines5253Fix typo: Miscrosoft -> Microsoft.5455------------------------------------------------------------------------56r16 | 2007-02-24 17:32:58 +0300 | 4 lines5758Remove <BaseTsd.h> include, as it is not present in Visual Studio 2005 Epxress Edition and required only for INT_PTR and UINT_PTR types.5960'intptr_t' and 'uintptr_t' types now defined explicitly with #ifdef _WIN64.6162------------------------------------------------------------------------63r15 | 2007-02-11 20:53:05 +0300 | 2 lines6465More correct fix for compilation under VS6.6667------------------------------------------------------------------------68r14 | 2007-02-11 20:04:32 +0300 | 2 lines6970Bugfix: fix compiling under VS6, when stdint.h enclosed in 'extern "C" {}'.7172------------------------------------------------------------------------73r13 | 2006-12-13 16:53:11 +0300 | 2 lines7475Make _inline modifier for imaxdiv default option. Use STATIC_IMAXDIV to make it static.7677------------------------------------------------------------------------78r12 | 2006-12-13 16:42:24 +0300 | 2 lines7980Error message changed: VC6 supported from now.8182------------------------------------------------------------------------83r11 | 2006-12-13 16:39:33 +0300 | 2 lines8485All (U)INT* types changed to (unsigned) __int*. This should make stdint.h compatible with VC6.8687------------------------------------------------------------------------88r10 | 2006-12-13 16:20:57 +0300 | 3 lines8990Added INLINE_IMAXDIV define switch.91If INLINE_IMAXDIV is defined imaxdiv() have static modifier. If not - it is _inline.9293------------------------------------------------------------------------94r9 | 2006-12-13 15:53:52 +0300 | 2 lines9596Error message for non-MSC compiler changed.9798------------------------------------------------------------------------99r8 | 2006-12-13 12:47:48 +0300 | 2 lines100101Added #ifndef for SIZE_MAX (it is defined in limits.h on MSVSC 8).102103------------------------------------------------------------------------104r7 | 2006-12-13 01:08:02 +0300 | 2 lines105106License chaged to BSD-derivative.107108------------------------------------------------------------------------109r6 | 2006-12-13 00:53:20 +0300 | 2 lines110111Added <wchar.h> include to avoid warnings when it is included after stdint.h.112113------------------------------------------------------------------------114r5 | 2006-12-12 00:58:05 +0300 | 2 lines115116BUGFIX: Definitions of INTPTR_MIN, INTPTR_MAX and UINTPTR_MAX for WIN32 and WIN64 was mixed up.117118------------------------------------------------------------------------119r4 | 2006-12-12 00:51:55 +0300 | 2 lines120121Rise #error if _MSC_VER is not defined. I.e. compiler other then Microsoft Visual C++ is used.122123------------------------------------------------------------------------124r3 | 2006-12-11 22:54:14 +0300 | 2 lines125126Added <limits.h> include to stdint.h.127128------------------------------------------------------------------------129r2 | 2006-12-11 21:39:27 +0300 | 2 lines130131Initial check in.132133------------------------------------------------------------------------134r1 | 2006-12-11 21:30:23 +0300 | 1 line135136Initial directory structure.137------------------------------------------------------------------------138139140