[LOGOFF]
authorAmine Khaldi <amine.khaldi@reactos.org>
Mon, 6 Jan 2014 20:54:43 +0000 (20:54 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Mon, 6 Jan 2014 20:54:43 +0000 (20:54 +0000)
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
* Remove useless NDEBUG define.
CORE-7716

svn path=/trunk/; revision=61549

reactos/base/applications/logoff/logoff.c
reactos/base/applications/logoff/precomp.h

index 023386b..4913c83 100644 (file)
  * with Windows' system32\logoff.exe commandline application.
  */
 
-#define NDEBUG
 #include "precomp.h"
 
+#include <stdio.h>
+#include <tchar.h>
+
 //Commandline argument switches
 LPTSTR szRemoteServerName = NULL;
 BOOL bVerbose;
index 3d287f8..44a8fc4 100644 (file)
@@ -2,20 +2,16 @@
 #define __SHUTDOWN_PRECOMP_H
 
 #include <stdarg.h>
+
 #include <windef.h>
 #include <winbase.h>
 #include <winuser.h>
 
-#include <stdio.h>
-//#include <stdlib.h>
-#include <tchar.h>
-//#include <reason.h> //shutdown codes
-
 #include "resource.h"
 
-// misc.c
+/* misc.c */
 INT AllocAndLoadString(OUT LPTSTR *lpTarget,
                        IN HINSTANCE hInst,
                        IN UINT uID);
 
-#endif
+#endif /* __SHUTDOWN_PRECOMP_H */