fixed for new paths

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4101 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-06-19 21:39:04 +00:00
parent a99cda74d9
commit dd596bc6ba
13 changed files with 28 additions and 28 deletions

View file

@ -7,10 +7,10 @@
!ifndef SysFunc.NSH.Included
!define SysFunc.NSH.Included
!include "${NSISDIR}\Contrib\System\System.nsh"
!include "${NSISDIR}\Examples\System\System.nsh"
!verbose 3 ; For WinMessages especially
!include "${NSISDIR}\Include\WinMessages.nsh"
!include "WinMessages.nsh"
!verbose 4
; ================= GetInstallerExeName implementation =================

View file

@ -7,7 +7,7 @@ Name "System Plugin Example"
OutFile "System.exe"
SetPluginUnload alwaysoff
!include "${NSISDIR}\Contrib\System\sysfunc.nsh"
!include "SysFunc.nsh"
Section "ThisNameIsIgnoredSoWhyBother?"
SetOutPath $TEMP
@ -23,7 +23,7 @@ Section "ThisNameIsIgnoredSoWhyBother?"
; The same example but using icon from resource.dll.
; You could use this dll for storing your resources, just replace FAR icon
; with something you really need.
File "${NSISDIR}\Contrib\System\Resource.dll"
File "Resource.dll"
System::Call '${sysMessageBeep} (${MB_ICONHAND})' ; custom beep
!insertmacro smMessageBox "`$TEMP\resource.dll`" "Message box with custom icon from resource.dll!" "System Example 1b" ${MB_OKCANCEL} "i 103"
Delete $TEMP\resource.dll
@ -114,7 +114,7 @@ enumex: ; End of drives or user cancel
; ----- Sample 7 ----- systemSplash -> Callbacks demonstration -----
; Logo
File /oname=spltmp.bmp "${NSISDIR}\Contrib\Makensisw\logo.bmp"
File /oname=spltmp.bmp "${NSISDIR}\Contrib\Graphics\Header\orange-nsis.bmp"
; File /oname=spltmp.wav "d:\Windows\Media\tada.wav"
; I. systemSplash variant