Codebase list ohcount / c941801a-846c-49c1-93c4-07f1094d7537/main test / src_dir / foo.nsh
c941801a-846c-49c1-93c4-07f1094d7537/main

Tree @c941801a-846c-49c1-93c4-07f1094d7537/main (Download .tar.gz)

foo.nsh @c941801a-846c-49c1-93c4-07f1094d7537/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