[NSLOOKUP]
authorAmine Khaldi <amine.khaldi@reactos.org>
Tue, 7 Jan 2014 17:01:18 +0000 (17:01 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Tue, 7 Jan 2014 17:01:18 +0000 (17:01 +0000)
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61560

reactos/base/applications/network/nslookup/nslookup.c
reactos/base/applications/network/nslookup/nslookup.h

index fc94274..b048928 100644 (file)
@@ -8,6 +8,9 @@
 
 #include "nslookup.h"
 
+#include <winbase.h>
+#include <iphlpapi.h>
+
 STATE   State;
 HANDLE  ProcessHeap;
 ULONG   RequestID;
index 242e9da..d6b10ec 100644 (file)
@@ -1,12 +1,11 @@
-#define WIN32_NO_STATUS
 #include <stdarg.h>
+
+#define WIN32_NO_STATUS
 #include <windef.h>
-#include <winbase.h>
 #define _INC_WINDOWS
 #include <winsock2.h>
 #include <tchar.h>
 #include <stdio.h>
-#include <iphlpapi.h>
 
 #define TypeA       "A"
 #define TypeAAAA    "AAAA"