summaryrefslogtreecommitdiffstats
path: root/win32/dir.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-12 06:56:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-12 06:56:09 +0000
commit3a960138ebe591f4faf9fb943e3e86f72e2feb22 (patch)
tree5acf171b97b3bb42bf8f4ee3581dd79f3f427637 /win32/dir.h
parentd876ede3a453a78e98d741b161ce5cd4f853290e (diff)
downloadruby-3a960138ebe591f4faf9fb943e3e86f72e2feb22.tar.gz
ruby-3a960138ebe591f4faf9fb943e3e86f72e2feb22.tar.xz
ruby-3a960138ebe591f4faf9fb943e3e86f72e2feb22.zip
* configure.in, bcc32/Makefile.sub, win32/Makefile.sub, win32/dir.h,
win32/win32.c, win32/win32.h: large file support for win32. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/dir.h')
-rw-r--r--win32/dir.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/dir.h b/win32/dir.h
index f472832d2..f970745fd 100644
--- a/win32/dir.h
+++ b/win32/dir.h
@@ -29,8 +29,8 @@ typedef struct {
DIR* rb_w32_opendir(const char*);
struct direct* rb_w32_readdir(DIR *);
-long rb_w32_telldir(DIR *);
-void rb_w32_seekdir(DIR *, long);
+off_t rb_w32_telldir(DIR *);
+void rb_w32_seekdir(DIR *, off_t);
void rb_w32_rewinddir(DIR *);
void rb_w32_closedir(DIR *);