and also in calls...

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5798 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2008-11-29 13:21:04 +00:00
parent 8309260972
commit d01c264c5e

View file

@ -414,19 +414,19 @@
!define WinVerGetServicePackLevel '!insertmacro _WinVer_GetServicePackLevel '
!macro _AtLeastServicePack _a _b _t _f
${WinVerGetServicePackLevel} $_LOGICLIB_TEMP
${WinVerGetServicePackLevel}
!insertmacro _>= $_LOGICLIB_TEMP `${_b}` `${_t}` `${_f}`
!macroend
!define AtLeastServicePack `"" AtLeastServicePack`
!macro _AtMostServicePack _a _b _t _f
${WinVerGetServicePackLevel} $_LOGICLIB_TEMP
${WinVerGetServicePackLevel}
!insertmacro _<= $_LOGICLIB_TEMP `${_b}` `${_t}` `${_f}`
!macroend
!define AtMostServicePack `"" AtMostServicePack`
!macro _IsServicePack _a _b _t _f
${WinVerGetServicePackLevel} $_LOGICLIB_TEMP
${WinVerGetServicePackLevel}
!insertmacro _= $_LOGICLIB_TEMP `${_b}` `${_t}` `${_f}`
!macroend
!define IsServicePack `"" IsServicePack`