Updated gitignore and Engine/bin for ticket #1

This commit is contained in:
DavidWyand-GG 2012-09-20 12:46:44 -04:00
parent 1cca6c95f2
commit 08d5ba86f7
593 changed files with 72474 additions and 0 deletions

View file

@ -0,0 +1,41 @@
Splash.dll - small (4k), simple plugin that lets you throw
up a splash screen in NSIS installers.
--- UPDATED in 2.0b0 - will break old scripts ---
To use:
Create a .BMP file of your splash screen.
(optional) Create a .WAV file to play while your splash screen shows.
Add the following lines to your .NSI file:
Function .onInit
SetOutPath $TEMP
File /oname=spltmp.bmp "my_splash.bmp"
; optional
; File /oname=spltmp.wav "my_splashshit.wav"
splash::show 1000 $TEMP\spltmp
Pop $0 ; $0 has '1' if the user closed the splash screen early,
; '0' if everything closed normally, and '-1' if some error occurred.
Delete $TEMP\spltmp.bmp
; Delete $TEMP\spltmp.wav
FunctionEnd
Note that the first parameter to splash.exe is the length to show the
screen for (in milliseconds), and the second is the splash bitmap filename (without
the .bmp). The BMP file used will be this parameter.bmp, and the wave file used
(if present) will be this parameter.wav.
(If you already have an .onInit function, put that in it)
Note: the return value of splash is 1 if the user closed the splash
screen early (pop it from the stack)
-Justin
Converted to a plugin DLL by Amir Szekely (kichik)