Author: akhaldi
Date: Mon Jan 13 12:59:02 2014
New Revision: 61608
URL:
http://svn.reactos.org/svn/reactos?rev=61608&view=rev
Log:
[WLANSVC]
* Create a main header and move some inclusions to it.
* Improve the header inclusions.
CORE-7716
Added:
trunk/reactos/base/services/wlansvc/precomp.h (with props)
Modified:
trunk/reactos/base/services/wlansvc/rpcserver.c
trunk/reactos/base/services/wlansvc/wlansvc.c
Added: trunk/reactos/base/services/wlansvc/precomp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/wlansvc/prec…
==============================================================================
--- trunk/reactos/base/services/wlansvc/precomp.h (added)
+++ trunk/reactos/base/services/wlansvc/precomp.h [iso-8859-1] Mon Jan 13 12:59:02 2014
@@ -0,0 +1,15 @@
+#ifndef _WLANSVC_PCH_
+#define _WLANSVC_PCH_
+
+#include <stdarg.h>
+
+#define WIN32_NO_STATUS
+#define _INC_WINDOWS
+#define COM_NO_WINDOWS_H
+
+#include <windef.h>
+#include <winbase.h>
+#include <winsvc.h>
+#include <wlansvc_s.h>
+
+#endif /* _WLANSVC_PCH_ */
Propchange: trunk/reactos/base/services/wlansvc/precomp.h
------------------------------------------------------------------------------
svn:eol-style = native
Modified: trunk/reactos/base/services/wlansvc/rpcserver.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/wlansvc/rpcs…
==============================================================================
--- trunk/reactos/base/services/wlansvc/rpcserver.c [iso-8859-1] (original)
+++ trunk/reactos/base/services/wlansvc/rpcserver.c [iso-8859-1] Mon Jan 13 12:59:02 2014
@@ -6,9 +6,7 @@
* COPYRIGHT: Copyright 2009 Christoph von Wittich
*/
-/* INCLUDES ****************************************************************/
-
-#include <wlansvc_s.h>
+#include "precomp.h"
#define NDEBUG
#include <debug.h>
Modified: trunk/reactos/base/services/wlansvc/wlansvc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/wlansvc/wlan…
==============================================================================
--- trunk/reactos/base/services/wlansvc/wlansvc.c [iso-8859-1] (original)
+++ trunk/reactos/base/services/wlansvc/wlansvc.c [iso-8859-1] Mon Jan 13 12:59:02 2014
@@ -8,7 +8,7 @@
/* INCLUDES *****************************************************************/
-#include <wlansvc_s.h>
+#include "precomp.h"
//#define NDEBUG
#include <debug.h>