aboutsummaryrefslogtreecommitdiff
path: root/Src/installer/shared/scripts/log.nsh
blob: 3767ba72e99ce33954ade3593f8d606a27a51e2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
!ifndef NULLSOFT_NX_LOG_NSIS_HEADER
!define NULLSOFT_NX_LOG_NSIS_HEADER

!macro NX_Log __string
	System::Call "Kernel32::OutputDebugStringW(t s)" `${__string}`
!macroend

!define NX_Log "!insertmacro NX_Log"

!macro NX_DLog __string
	!ifdef _DEBUG
		${NX_Log} `${__string}`
	!endif
!macroend

!define NX_DLog "!insertmacro NX_DLog"

!endif ;NULLSOFT_NX_LOG_NSIS_HEADER