You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2001/08/27 21:14:20 UTC

cvs commit: apr/include/arch/unix misc.h

bnicholes    01/08/27 12:14:20

  Modified:    include/arch/unix misc.h
  Log:
  Moved the #define's  WSAHighByte and WSALowByte outside of the WIN32
  exclusive #ifdef so that we could include them with the NETWARE build also.
  
  Revision  Changes    Path
  1.28      +4 -1      apr/include/arch/unix/misc.h
  
  Index: misc.h
  ===================================================================
  RCS file: /home/cvs/apr/include/arch/unix/misc.h,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- misc.h	2001/05/16 19:14:45	1.27
  +++ misc.h	2001/08/27 19:14:20	1.28
  @@ -97,9 +97,12 @@
       apr_os_file_t write_fd;
   };
   
  -#ifdef WIN32
  +#if defined(WIN32) || defined(NETWARE)
   #define WSAHighByte 2
   #define WSALowByte 0
  +#endif
  +
  +#ifdef WIN32
   /* Platform specific designation of run time os version.
    * Gaps allow for specific service pack levels that
    * export new kernel or winsock functions or behavior.