Example.nsi 533 B

123456789101112131415161718192021
  1. Name "Splash.dll test"
  2. OutFile "Splash Test.exe"
  3. XPStyle on
  4. Function .onInit
  5. # the plugins dir is automatically deleted when the installer exits
  6. InitPluginsDir
  7. File /oname=$PLUGINSDIR\splash.bmp "${NSISDIR}\Contrib\Graphics\Wizard\orange-nsis.bmp"
  8. #optional
  9. #File /oname=$PLUGINSDIR\splash.wav "C:\myprog\sound.wav"
  10. splash::show 1000 $PLUGINSDIR\splash
  11. Pop $0 ; $0 has '1' if the user closed the splash screen early,
  12. ; '0' if everything closed normally, and '-1' if some error occurred.
  13. FunctionEnd
  14. Section
  15. SectionEnd