1
0
forked from aniani/vim

Fix definition of UINT_PTR for 64 bit systems.

This commit is contained in:
Bram Moolenaar
2010-05-26 21:42:54 +02:00
parent 6a18eb6f62
commit 167632fcdd
4 changed files with 10 additions and 4 deletions

View File

@@ -44,7 +44,7 @@
#include <shlobj.h>
/* Accommodate old versions of VC that don't have a modern Platform SDK */
#if defined(_MSC_VER) && _MSC_VER < 1300
#if (defined(_MSC_VER) && _MSC_VER < 1300) || !defined(MAXULONG_PTR)
# undef UINT_PTR
# define UINT_PTR UINT
#endif