From: Amine Khaldi Date: Mon, 6 Jan 2014 20:54:43 +0000 (+0000) Subject: [LOGOFF] X-Git-Tag: ReactOS-0.3.16~315 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=fb0c40987e2359c2897c8863aad627b4d1055dba;ds=sidebyside [LOGOFF] * 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 --- diff --git a/reactos/base/applications/logoff/logoff.c b/reactos/base/applications/logoff/logoff.c index 023386b5b9d..4913c83db70 100644 --- a/reactos/base/applications/logoff/logoff.c +++ b/reactos/base/applications/logoff/logoff.c @@ -11,9 +11,11 @@ * with Windows' system32\logoff.exe commandline application. */ -#define NDEBUG #include "precomp.h" +#include +#include + //Commandline argument switches LPTSTR szRemoteServerName = NULL; BOOL bVerbose; diff --git a/reactos/base/applications/logoff/precomp.h b/reactos/base/applications/logoff/precomp.h index 3d287f86301..44a8fc45a96 100644 --- a/reactos/base/applications/logoff/precomp.h +++ b/reactos/base/applications/logoff/precomp.h @@ -2,20 +2,16 @@ #define __SHUTDOWN_PRECOMP_H #include + #include #include #include -#include -//#include -#include -//#include //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 */