You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2009/06/02 00:58:54 UTC

svn commit: r780867 - /apr/apr/branches/1.3.x/include/arch/win32/apr_arch_misc.h

Author: wrowe
Date: Mon Jun  1 22:58:54 2009
New Revision: 780867

URL: http://svn.apache.org/viewvc?rev=780867&view=rev
Log:
Revert Mladen's breakage in r649208 by including tlhelp32.h before attempting
a declaration of LPPROCESSENTRY32W.

Backports; r780866

Modified:
    apr/apr/branches/1.3.x/include/arch/win32/apr_arch_misc.h

Modified: apr/apr/branches/1.3.x/include/arch/win32/apr_arch_misc.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.3.x/include/arch/win32/apr_arch_misc.h?rev=780867&r1=780866&r2=780867&view=diff
==============================================================================
--- apr/apr/branches/1.3.x/include/arch/win32/apr_arch_misc.h (original)
+++ apr/apr/branches/1.3.x/include/arch/win32/apr_arch_misc.h Mon Jun  1 22:58:54 2009
@@ -37,8 +37,6 @@
 #if APR_HAVE_PTHREAD_H
 #include <pthread.h>
 #endif
-
-/* ### create APR_HAVE_* macros for these? */
 #if APR_HAVE_STDLIB_H
 #include <stdlib.h>
 #endif
@@ -46,6 +44,8 @@
 #include <string.h>
 #endif
 
+#include <tlhelp32.h>
+
 struct apr_other_child_rec_t {
     apr_pool_t *p;
     struct apr_other_child_rec_t *next;