Features list updated, some links added and command parameters are now shown alone with a light background behind them.

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1476 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-10-26 19:23:10 +00:00
parent 2bb6c55b0f
commit 41a03f754c
24 changed files with 497 additions and 464 deletions

View file

@ -2,37 +2,37 @@
\H{IntFmt} IntFmt
IntFmt \e{user_var(output) format numberstring}
\c user_var(output) format numberstring
Formats the number in "numberstring" using the format "format", and sets the output to user variable $x. Example format strings include "%08X" "%u"
Formats the number in "numberstring" using the format "format", and sets the output to user variable $x. Example format strings include "%08X" "%u"
\H{IntOp} IntOp
IntOp \e{user_var(output) value1 OP [value2]}
\c user_var(output) value1 OP [value2]
Combines value1 and (depending on OP) value2 into the user variable $x. OP is defined as one of the following:
\b \e{+} ADDs value1 and value2
\b \e{+} ADDs value1 and value2
\b \e{-} SUBTRACTs value2 from value1
\b \e{-} SUBTRACTs value2 from value1
\b \e{*} MULTIPLIES value1 and value2
\b \e{*} MULTIPLIEs value1 and value2
\b \e{/} DIVIDEs value1 by value2
\b \e{/} DIVIDEs value1 by value2
\b \e{%} MODULUSs value1 by value2
\b \e{%} MODULUSs value1 by value2
\b \e{|} BINARY ORs value1 and value2
\b \e{|} BINARY ORs value1 and value2
\b \e{&} BINARY ANDs value1 and value2
\b \e{&} BINARY ANDs value1 and value2
\b \e{^} BINARY XORs value1 and value2
\b \e{^} BINARY XORs value1 and value2
\b \e{~} BITWISE NEGATEs value1 (i.e. 7 becomes 4294917288)
\b \e{~} BITWISE NEGATEs value1 (i.e. 7 becomes 4294917288)
\b \e{!} LOGICALLY NEGATEs value1 (i.e. 7 becomes 0)
\b \e{!} LOGICALLY NEGATEs value1 (i.e. 7 becomes 0)
\b \e{||} LOGICALLY ORs value1 and value2
\b \e{||} LOGICALLY ORs value1 and value2
\b \e{&&} LOGICALLY ANDs value1 and value2
\b \e{&&} LOGICALLY ANDs value1 and value2