From 84c1ce2084b8bf6d0b5ffa0077d024cae1583485 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 3 May 2005 17:31:56 +0000 Subject: [PATCH] applied parts of patch #1193692 - fixes to scons Contrib stuff git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4006 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/AdvSplash/SConscript | 2 +- Contrib/ExDLL/exdll.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Contrib/AdvSplash/SConscript b/Contrib/AdvSplash/SConscript index fa4b298d..bbaaeb4b 100644 --- a/Contrib/AdvSplash/SConscript +++ b/Contrib/AdvSplash/SConscript @@ -1,7 +1,7 @@ target = 'AdvSplash' files = Split(""" - AdvSplash.c + advsplash.c """) libs = Split(""" diff --git a/Contrib/ExDLL/exdll.h b/Contrib/ExDLL/exdll.h index 9df76ca6..d5178839 100644 --- a/Contrib/ExDLL/exdll.h +++ b/Contrib/ExDLL/exdll.h @@ -70,10 +70,10 @@ typedef struct { int instdir_error; int rtl; int errlvl; -} exec_flags; +} exec_flags_type; typedef struct { - exec_flags *exec_flags; + exec_flags_type *exec_flags; int (__stdcall *ExecuteCodeSegment)(int, HWND); } extra_parameters; @@ -113,4 +113,4 @@ static void __stdcall setuservariable(const int varnum, const char *var) -#endif//_EXDLL_H_ \ No newline at end of file +#endif//_EXDLL_H_