From bd5811d13bab28a87bb52c26337772ab04fee265 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 23 Dec 2013 14:23:40 +0000 Subject: [PATCH] [AUTHZ] * Do not include debug.h into the main header. CORE-7716 svn path=/trunk/; revision=61346 --- reactos/dll/win32/authz/authz.c | 4 ++++ reactos/dll/win32/authz/clictx.c | 3 +++ reactos/dll/win32/authz/precomp.h | 1 - reactos/dll/win32/authz/resman.c | 3 +++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/authz/authz.c b/reactos/dll/win32/authz/authz.c index c6191bda3c8..f7f38f1575d 100644 --- a/reactos/dll/win32/authz/authz.c +++ b/reactos/dll/win32/authz/authz.c @@ -25,8 +25,12 @@ * UPDATE HISTORY: * 09/30/2005 Created */ + #include "precomp.h" +#define NDEBUG +#include + HINSTANCE hDllInstance; diff --git a/reactos/dll/win32/authz/clictx.c b/reactos/dll/win32/authz/clictx.c index 6f4aaa05101..6088f0c0f97 100644 --- a/reactos/dll/win32/authz/clictx.c +++ b/reactos/dll/win32/authz/clictx.c @@ -25,8 +25,11 @@ * UPDATE HISTORY: * 10/07/2005 Created */ + #include "precomp.h" +#define NDEBUG +#include /* * @unimplemented diff --git a/reactos/dll/win32/authz/precomp.h b/reactos/dll/win32/authz/precomp.h index fe124a6d2e7..90efbeff94d 100644 --- a/reactos/dll/win32/authz/precomp.h +++ b/reactos/dll/win32/authz/precomp.h @@ -12,7 +12,6 @@ #include #include -#include #if DBG diff --git a/reactos/dll/win32/authz/resman.c b/reactos/dll/win32/authz/resman.c index ae66700e96a..58a4b0d07a3 100644 --- a/reactos/dll/win32/authz/resman.c +++ b/reactos/dll/win32/authz/resman.c @@ -25,8 +25,11 @@ * UPDATE HISTORY: * 10/07/2005 Created */ + #include "precomp.h" +#define NDEBUG +#include static BOOL AuthzpQueryToken(IN OUT PAUTHZ_RESMAN ResMan,