Codebase list ohcount / fc0f4e2e-584f-4c68-9809-ad96640f54f0/main test / src_dir / foo.nsh
fc0f4e2e-584f-4c68-9809-ad96640f54f0/main

Tree @fc0f4e2e-584f-4c68-9809-ad96640f54f0/main (Download .tar.gz)

foo.nsh @fc0f4e2e-584f-4c68-9809-ad96640f54f0/mainraw · history · blame

; NSIS "header" libraries can be in .nsh files.
/* Copyright some time
 * never
 * and not much of that either
"still a comment"
*/

!macro SillyMacro Param1
	; ... Because we can ;-)
	!error "Why did you call this macro, ${Param1}?  That was silly."
!macroend

Function Die
	# Likewise, because we can.
	DetailPrint "Aarrrrggghh!  I died."
	Quit
FunctionEnd