* Fixed apr_off_t (bug ID 11460)

git-svn-id: trunk@11216 -
This commit is contained in:
michael 2008-06-10 20:06:32 +00:00
parent 6346422772
commit 22d8bfeeff

View File

@ -97,16 +97,7 @@ type
apr_uint32_tso_handle_t = cuint;
type
{$IFDEF WINDOWS}
apr_off_t = Int64;
{$ENDIF}
{$IFDEF UNIX}
{$ifdef CPU64}
apr_off_t = int64;
{$else}
apr_off_t = Integer;
{$endif}
{$ENDIF}
apr_int32_t = Integer;
Papr_int32_t = ^Integer;