Codebase list ohcount / 6c6b3496-5c95-4881-94ad-331592f9fd83/main test / src_dir / foo.nsh
6c6b3496-5c95-4881-94ad-331592f9fd83/main

Tree @6c6b3496-5c95-4881-94ad-331592f9fd83/main (Download .tar.gz)

foo.nsh @6c6b3496-5c95-4881-94ad-331592f9fd83/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