On 28 Sep 2004 16:16:17 -0000, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> clar        2004/09/28 09:16:17
> 
>   Modified:    file_io/win32 readwrite.c
>                include  apr.hnw apr.hw
>                network_io/win32 sendrecv.c
>   Log:
>   replaced define for DWORD_MAX with APR_DWORD_MAX

>   Index: apr.hw
>   ===================================================================
>   RCS file: /home/cvs/apr/include/apr.hw,v
>   retrieving revision 1.125
>   retrieving revision 1.126
>   diff -u -r1.125 -r1.126
>   --- apr.hw    22 Sep 2004 18:21:30 -0000      1.125
>   +++ apr.hw    28 Sep 2004 16:16:17 -0000      1.126
>   @@ -342,7 +342,7 @@
>    #define APR_SIZEOF_VOIDP   4
>    #endif
> 
>   -#define DWORD_MAX 4294967295
>   +#define APR_DWORD_MAX 4294967295

or

#define APR_DWORD_MAX (DWORD_MAX)

since this is a platform which defines it?

Reply via email to