summaryrefslogtreecommitdiff
path: root/wcon.h
diff options
context:
space:
mode:
authorJohn van Groningen2006-06-06 13:07:46 +0000
committerJohn van Groningen2006-06-06 13:07:46 +0000
commitb80eab7c286ba905a5cfe592bbcd6fdbfd64971f (patch)
treef107e42005b3516627d62f62c08dcf24c5ab5b81 /wcon.h
parentadd garbage collector for 64 bit windows and linux (diff)
port file I/O to 64 bit windows
Diffstat (limited to 'wcon.h')
-rw-r--r--wcon.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/wcon.h b/wcon.h
index 570ab32..1a4c8d9 100644
--- a/wcon.h
+++ b/wcon.h
@@ -1,5 +1,9 @@
extern int w_get_char();
+#ifdef A64
+extern int w_get_int (__int64 *i_p);
+#else
extern int w_get_int (int *i_p);
+#endif
extern int w_get_real (double *r_p);
extern unsigned long w_get_text (char *string,unsigned long max_length);
extern void w_print_char (char c);