Reference/Pop: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Created page with "=Pop= user_var(out) Pops a string off of the stack into user variable $x. If the stack is empty, the error flag will be set. <highlight-nsis>Push 1 Pop $0 # = 1</highlight-nsis>")
(No difference)

Revision as of 09:05, 28 November 2011

Pop

user_var(out)

Pops a string off of the stack into user variable $x. If the stack is empty, the error flag will be set.

Push 1
Pop $0 # = 1