summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-28 18:10:45 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-28 18:10:45 +0200
commitd90b6c02e2900576fb37d95b5e4f4a32b2d7383f (patch)
treebc0866d58541b5092f91fef70d0030eda0b0756e /src/structs.h
parentf4145d8e990a72bdfea9db3110a7e42a0ff4240c (diff)
downloadvim-git-d90b6c02e2900576fb37d95b5e4f4a32b2d7383f.tar.gz
patch 7.4.2285v7.4.2285
Problem: Generated files are outdated. Solution: Generate the files. Avoid errors when generating prototypes.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index e581e4365..6eb43f849 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1127,8 +1127,13 @@ typedef long_u hash_T; /* Type for hi_hash */
#ifdef FEAT_NUM64
/* Use 64-bit Number. */
# ifdef WIN3264
+# ifdef PROTO
+typedef long varnumber_T;
+typedef unsigned long uvarnumber_T;
+# else
typedef __int64 varnumber_T;
typedef unsigned __int64 uvarnumber_T;
+# endif
# elif defined(HAVE_STDINT_H)
typedef int64_t varnumber_T;
typedef uint64_t uvarnumber_T;