You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by "William A. Rowe, Jr." <wr...@rowe-clan.net> on 2001/01/29 17:23:37 UTC

RE: cvs commit: apr/include apr_user.h

> trawick     01/01/29 08:16:10
> 
>   Modified:    include  apr_user.h
>   Log:
>   use a form of preprocessing which buildexports.awk can handle;
>   exports.c now compiles on Unix, as it no longer tries to reference
>   the macros apr_compare_users() or apr_compare_groups()
>   
>   -#ifdef WIN32
>   +#if defined(WIN32)
>    APR_DECLARE(apr_status_t) apr_compare_users(apr_uid_t 
> left, apr_uid_t right);
>    #else
>    #define apr_compare_users(left,right) ((left == right) ? 
> APR_SUCCESS : APR_EMISMATCH)

That's how it works?  Cool, I'll do better next time.