wrowe 02/01/28 23:24:10
Modified: include/arch/win32 misc.h
Log:
More goodness for both WinNT and WinCE builds ... none of this matters
if you aren't building for 9x/ME binary compatibility.
[Mladen Turk, William Rowe]
Revision Changes Path
1.38 +4 -0 apr/include/arch/win32/misc.h
Index: misc.h
===================================================================
RCS file: /home/cvs/apr/include/arch/win32/misc.h,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- misc.h 28 Jan 2002 15:56:08 -0000 1.37
+++ misc.h 29 Jan 2002 07:24:10 -0000 1.38
@@ -206,6 +206,8 @@
* In the case of non-text functions, simply #define the original name
*/
+#if !defined(_WIN32_WCE) && !defined(WINNT)
+
#ifdef GetFileAttributesExA
#undef GetFileAttributesExA
#endif
@@ -290,6 +292,8 @@
(handle, ObjectType, SecurityInfo, ppsidOwner, ppsidGroup,
ppDacl, ppSacl, ppSecurityDescriptor));
#define GetSecurityInfo apr_winapi_GetSecurityInfo
+
+#endif /* !defined(_WIN32_WCE) && !defined(WINNT) */
#endif /* WIN32 */
|