From: Amine Khaldi Date: Fri, 27 Dec 2013 10:33:34 +0000 (+0000) Subject: [SCRRUN] X-Git-Tag: ReactOS-0.3.16~414 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=304f754fbf46fb115423ac42b9cb57f982884773 [SCRRUN] * Fix a typo in the header guard. CORE-7716 svn path=/trunk/; revision=61441 --- diff --git a/reactos/dll/win32/scrrun/scrrun_private.h b/reactos/dll/win32/scrrun/scrrun_private.h index aa24ddee228..1a8f079de9f 100644 --- a/reactos/dll/win32/scrrun/scrrun_private.h +++ b/reactos/dll/win32/scrrun/scrrun_private.h @@ -15,8 +15,9 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ + #ifndef _SCRRUN_PRIVATE_H_ -#define _SCRRUN_PRIVATE_H +#define _SCRRUN_PRIVATE_H_ extern HRESULT WINAPI FileSystem_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN; extern HRESULT WINAPI Dictionary_CreateInstance(IClassFactory*,IUnknown*,REFIID,void**) DECLSPEC_HIDDEN; @@ -44,4 +45,4 @@ static inline BOOL heap_free(void *mem) return HeapFree(GetProcessHeap(), 0, mem); } -#endif +#endif /* _SCRRUN_PRIVATE_H_ */