* Fixed size of apr_off_t for 64-bit systems

git-svn-id: trunk@7029 -
This commit is contained in:
michael 2007-03-29 20:49:49 +00:00
parent 3c10213ddd
commit ee4e71fdd3

View File

@ -102,7 +102,11 @@ type
apr_off_t = Int64;
{$ENDIF}
{$IFDEF UNIX}
{$ifdef CPU64}
apr_off_t = int64;
{$else}
apr_off_t = Integer;
{$endif}
{$ENDIF}
apr_int32_t = Integer;