Reference/IntCmpU: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
(Created page with "=IntCmpU= val1 val2 jump_if_equal [jump_if_val1_less] [jump_if_val1_more] Compares two unsigned integers val1 and val2. If val1 and val2 are equal, Gotos ju...") |
mNo edit summary |
||
| Line 4: | Line 4: | ||
Compares two unsigned integers val1 and val2. If val1 and val2 are equal, [[Reference/Goto|Gotos]] jump_if_equal, otherwise if val1 < val2, [[Reference/Goto|Gotos]] jump_if_val1_less, otherwise if val1 > val2, [[Reference/Goto|Gotos]] jump_if_val1_more. Performs the comparison as unsigned integers. | Compares two unsigned integers val1 and val2. If val1 and val2 are equal, [[Reference/Goto|Gotos]] jump_if_equal, otherwise if val1 < val2, [[Reference/Goto|Gotos]] jump_if_val1_less, otherwise if val1 > val2, [[Reference/Goto|Gotos]] jump_if_val1_more. Performs the comparison as unsigned integers. | ||
''Command introduced with NSIS v1.60'' | |||
Latest revision as of 20:37, 4 June 2013
IntCmpU
val1 val2 jump_if_equal [jump_if_val1_less] [jump_if_val1_more]
Compares two unsigned integers val1 and val2. If val1 and val2 are equal, Gotos jump_if_equal, otherwise if val1 < val2, Gotos jump_if_val1_less, otherwise if val1 > val2, Gotos jump_if_val1_more. Performs the comparison as unsigned integers.
Command introduced with NSIS v1.60