Author: akhaldi Date: Fri Dec 27 10:33:34 2013 New Revision: 61441
URL: http://svn.reactos.org/svn/reactos?rev=61441&view=rev Log: [SCRRUN] * Fix a typo in the header guard. CORE-7716
Modified: trunk/reactos/dll/win32/scrrun/scrrun_private.h
Modified: trunk/reactos/dll/win32/scrrun/scrrun_private.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/scrrun/scrrun_pri... ============================================================================== --- trunk/reactos/dll/win32/scrrun/scrrun_private.h [iso-8859-1] (original) +++ trunk/reactos/dll/win32/scrrun/scrrun_private.h [iso-8859-1] Fri Dec 27 10:33:34 2013 @@ -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 @@ return HeapFree(GetProcessHeap(), 0, mem); }
-#endif +#endif /* _SCRRUN_PRIVATE_H_ */