improvements by Joe Siebenmann
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4720 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
593633dec7
commit
5cc43bc46d
2 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ Reads a byte from a file opened with FileOpen. The byte is stored in the output
|
|||
|
||||
\c handle offset [mode] [user_var(new position)]
|
||||
|
||||
Seeks a file opened with FileOpen. If mode is omitted or specified as SET, the file is positioned to "offset". If mode is specified as CUR, then the file pointer is moved by offset. If mode is specified as END, the file pointer is set to a position relative to EOF. If the final parameter "new position" is specified, the new file position will be stored to that variable.
|
||||
Seeks a file opened with FileOpen. If mode is omitted or specified as SET, the file is positioned to "offset", relative to the beginning of the file. If mode is specified as CUR, then the file is positioned to "offset", relative to the current file position. If mode is specified as END, then the file is positioned to "offset", relative to the end of the file. If the final parameter "new position" is specified, the new file position will be stored to that variable.
|
||||
|
||||
\c ClearErrors
|
||||
\c FileOpen $0 $INSTDIR\file.dat r
|
||||
|
|
|
@ -13,7 +13,7 @@ Formats the number in "numberstring" using the format "format", and sets the out
|
|||
|
||||
\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:
|
||||
Combines value1 and (depending on OP) value2 into the specified user variable (\c{user_var}). OP is defined as one of the following:
|
||||
|
||||
\b \e{+} ADDs value1 and value2
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue