From e1e91e512f96df8aaff2f16b10d204e2923a7468 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sun, 9 Feb 2014 23:40:47 +0000 Subject: [PATCH] [ACLEDIT] * Add header guards to the main header. * Improve header inclusions. CORE-7716 svn path=/trunk/; revision=62090 --- reactos/dll/win32/acledit/acleditint.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reactos/dll/win32/acledit/acleditint.h b/reactos/dll/win32/acledit/acleditint.h index 49e9ba721db..ce177931720 100644 --- a/reactos/dll/win32/acledit/acleditint.h +++ b/reactos/dll/win32/acledit/acleditint.h @@ -1,6 +1,7 @@ -#include +#ifndef _ACLEDIT_H +#define _ACLEDIT_H -#include "resource.h" +#include extern HINSTANCE hDllInstance; @@ -56,4 +57,4 @@ typedef DWORD (CALLBACK *PACL_CHANGE)(HWND hWnd, BOOL bApplyToSubObjects, LPDWORD lpdwChangeContextStatus); -/* EOF */ +#endif /* _ACLEDIT_H */