Fix bug #3078983 _Win_HIWORD macro outvar error
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6124 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
b93d008d64
commit
a411bbc181
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ IntOp ${_outvar} "${_in}" & 0xFFFF
|
|||
!define LOWORD "!insertmacro _Win_LOWORD "
|
||||
|
||||
!macro _Win_HIWORD _outvar _in
|
||||
IntOp ${outvar} "${_in}" >> 16 ;sign extended :(
|
||||
${LOWORD} ${_outvar} ${outvar} ;make sure we strip off the upper word
|
||||
IntOp ${_outvar} "${_in}" >> 16 ;sign extended :(
|
||||
${LOWORD} ${_outvar} ${_outvar} ;make sure we strip off the upper word
|
||||
!macroend
|
||||
!define HIWORD "!insertmacro _Win_HIWORD "
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue