Fixed apr_pool.inc file

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@20 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
sekelsenmat 2006-09-28 17:35:29 +00:00
parent 30a226681c
commit 3b6cdb5bdc

View File

@ -169,7 +169,7 @@ function apr_pollset_remove(pollset: Papr_pollset_t;
function apr_pollset_poll(pollset: Papr_pollset_t; timeout: apr_interval_time_t;
num: Papr_int32_t; const descriptors: PPapr_pollfd_t): apr_status_t;
{$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
external LibAPR name LibNamePrefix + 'apr_pollset_poll' + LibSuff16;
external LibAPR name LibNamePrefix + 'apr_pollset_poll' + LibSuff20;
{
* Poll the descriptors in the poll structure
@ -189,5 +189,5 @@ function apr_pollset_poll(pollset: Papr_pollset_t; timeout: apr_interval_time_t;
function apr_poll(aprset: Papr_pollfd_t; numsock: apr_int32_t;
nsds: Papr_int32_t; timeout: apr_interval_time_t): apr_status_t;
{$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
external LibAPR name LibNamePrefix + 'apr_poll' + LibSuff16;
external LibAPR name LibNamePrefix + 'apr_poll' + LibSuff20;