* include header file content only once

* set verbose level

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5469 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2007-12-29 23:43:17 +00:00
parent db25d86b35
commit 99bd07ffb6

View file

@ -5,6 +5,11 @@ Header file for creating custom installer pages with nsDialogs
*/
!ifndef NSDIALOGS_INCLUDED
!define NSDIALOGS_INCLUDED
!verbose push
!verbose 3
!include LogicLib.nsh
!include WinMessages.nsh
@ -553,3 +558,6 @@ Header file for creating custom installer pages with nsDialogs
FunctionEnd
!macroend
!verbose pop
!endif