Codebase list ohcount / 85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main test / src_dir / foo.nsh
85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main

Tree @85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/main (Download .tar.gz)

foo.nsh @85d5c3b4-c1f3-4d55-a24f-4c231b8d4c21/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