From 2b0fe8070b594b0c7d733e0b4f8531d6e2984722 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 11 May 2010 02:49:46 +0000 Subject: * ext/sdbm/sdbm.h (DBM): large file support on win32. [ruby-core:23039] * ext/sdbm/depend: objects depend on sdbm.h. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/sdbm/sdbm.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ext/sdbm/sdbm.h') diff --git a/ext/sdbm/sdbm.h b/ext/sdbm/sdbm.h index 9691b29855..c3b53c4a8f 100644 --- a/ext/sdbm/sdbm.h +++ b/ext/sdbm/sdbm.h @@ -7,6 +7,8 @@ #ifndef _SDBM_H_ #define _SDBM_H_ +#include + #define DBLKSIZ 4096 #define PBLKSIZ 1024 #define PAIRMAX 1008 /* arbitrary on PBLKSIZ-N */ @@ -19,11 +21,11 @@ typedef struct { int dirf; /* directory file descriptor */ int pagf; /* page file descriptor */ int flags; /* status/error flags, see below */ - long maxbno; /* size of dirfile in bits */ + int keyptr; /* current key for nextkey */ + off_t maxbno; /* size of dirfile in bits */ long curbit; /* current bit number */ long hmask; /* current hash mask */ long blkptr; /* current block for nextkey */ - int keyptr; /* current key for nextkey */ long blkno; /* current page to read/write */ long pagbno; /* current page in pagbuf */ char pagbuf[PBLKSIZ]; /* page file block buffer */ -- cgit v1.2.3