Banner - shows some text before installation starts
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1830 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
b295ba4ac5
commit
4828e0d292
6 changed files with 232 additions and 0 deletions
15
Contrib/Banner/Example.nsi
Normal file
15
Contrib/Banner/Example.nsi
Normal file
|
@ -0,0 +1,15 @@
|
|||
Name "Banner.dll test"
|
||||
|
||||
OutFile "Banner Test.exe"
|
||||
|
||||
Function .onInit
|
||||
Banner::show /NOUNLOAD "Calculating important stuff..."
|
||||
again:
|
||||
IntOp $0 $0 + 1
|
||||
Sleep 1
|
||||
StrCmp $0 2000 0 again
|
||||
Banner::destroy
|
||||
FunctionEnd
|
||||
|
||||
Section
|
||||
SectionEnd
|
Loading…
Add table
Add a link
Reference in a new issue