2002-11-15 12:22:48 +00:00
|
|
|
Name "Splash.dll test"
|
|
|
|
|
|
|
|
OutFile "Splash Test.exe"
|
|
|
|
|
|
|
|
XPStyle on
|
|
|
|
|
|
|
|
Function .onInit
|
|
|
|
# the plugins dir is automatically deleted when the installer exits
|
|
|
|
InitPluginsDir
|
2005-06-19 21:39:04 +00:00
|
|
|
File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Wizard\orange-nsis.bmp"
|
2002-11-15 12:22:48 +00:00
|
|
|
#optional
|
|
|
|
#File /oname=$PLUGINSDIR\splash.wav "C:\myprog\sound.wav"
|
|
|
|
|
|
|
|
splash::show 1000 $PLUGINSDIR\splash
|
|
|
|
|
|
|
|
Pop $0 ; $0 has '1' if the user closed the splash screen early,
|
2005-09-16 11:27:51 +00:00
|
|
|
; '0' if everything closed normally, and '-1' if some error occurred.
|
2002-11-15 12:22:48 +00:00
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
Section
|
|
|
|
SectionEnd
|