Codebase list ohcount / 4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main test / expected_dir / foo.nsh
4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main

Tree @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/main (Download .tar.gz)

foo.nsh @4fa67836-5fea-4473-87e4-bd80a2d5b1ae/mainraw · history · blame

nsis	comment	; NSIS "header" libraries can be in .nsh files.
nsis	comment	/* Copyright some time
nsis	comment	 * never
nsis	comment	 * and not much of that either
nsis	comment	"still a comment"
nsis	comment	*/
nsis	blank	
nsis	code	!macro SillyMacro Param1
nsis	comment		; ... Because we can ;-)
nsis	code		!error "Why did you call this macro, ${Param1}?  That was silly."
nsis	code	!macroend
nsis	blank	
nsis	code	Function Die
nsis	comment		# Likewise, because we can.
nsis	code		DetailPrint "Aarrrrggghh!  I died."
nsis	code		Quit
nsis	code	FunctionEnd