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:
anders_k 2010-10-02 01:55:25 +00:00
parent b93d008d64
commit a411bbc181

View file

@ -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 "