diff options
author | John van Groningen | 2006-06-06 13:07:46 +0000 |
---|---|---|
committer | John van Groningen | 2006-06-06 13:07:46 +0000 |
commit | b80eab7c286ba905a5cfe592bbcd6fdbfd64971f (patch) | |
tree | f107e42005b3516627d62f62c08dcf24c5ab5b81 /wcon.h | |
parent | add 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.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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); |