Advertising
advertising
related pastes to tag 'nsis'
- 1441539 - MOON. Translation NSIS Source Co: nsis wtfpl
-
- !include MUI2.nsh
- ; I dub thee, MOON Installer!
- Name "MOON. English Localization"
- OutFile "[TLWiki]_MOON_English_v1.00a_.exe"
- InstallDir "$PROGRAMFILES\NEXTON\moon\"
- SetCompressor /FINAL /SOLID lzma
- 1048713 - WinVer 2008 #2: nsis
-
- ; ---------------------
- ; WinVer.nsh
- ; ---------------------
- ;
- ; LogicLib extensions for handling Windows versions.
- ;
- ; IsNT checks if the installer is running on Windows NT family (NT4, 2000, XP, etc.)
- ;
- 1014249 - Unnamed: nsis
-
- ; ---------------------
- ; WinVer.nsh
- ; ---------------------
- ;
- ; LogicLib extensions for handling Windows versions.
- ;
- ; IsNT checks if the installer is running on Windows NT family (NT4, 2000, XP, etc.)
- ;
- 925343 - NSIS delete unicode path: nsis
-
- !macro MakeUnicodePathWithSpecialChar outvar prefix unicodechar suffix
- push $0
- push $1
- StrLen $0 '${prefix}'
- StrLen $1 '${suffix}'
- IntOp $0 $0 * 2
- IntOp $1 $1 + 1 ;\0
- IntOp $1 $1 * 2
- 905003 - NSIS Link common code: nsis
-
- /*
- To use this code, you should define LnkCtrl_MemAlloc and LnkCtrl_MemFree
- before you include this header if your plugin uses a memory function other than GlobalXXX
- //////////////////////////////////////////////////////////////////////////
- nsDialogs:
- ----------
- #define LnkCtrl_MemAlloc(cb) (HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, cb))
- 902374 - Something: nsis
-
- /* Sloppy code by Anders while wasting time in #nsis
- Might crash your machine or erase your data,
- don't blam me if such a thing happens just by looking @ this mess
- */
- /*
- SYSTEM; GetOpenFileName, MultiSel.nsi v0.1.1
- 902368 - SYSTEM; GetOpenFileName, MultiSe: nsis
-
- /* Sloppy code by Anders while wasting time in #nsis
- Might crash your machine or erase your data,
- don't blam me if such a thing happens just by looking @ this mess
- */
- /*
- SYSTEM; GetOpenFileName, MultiSel.nsi v0.1
- 863731 - Stuff: nsis uac
-
- !ifmacroNdef _UAC.GenerateOnInitElevationCode
- !macro _UAC.GenerateOnInitElevationCode _modeprefix
- !ifndef __FUNCTION__
- !error "UAC: Needs to be called inside a function"
- !endif
- !insertmacro _UAC.InitStrings ${_modeprefix}
- !define _UAC.GOIECUniq L${__LINE__}
- ${_UAC.GOIECUniq}UAC_Elevate:
- 858408 - NSIS: MakeClearTypeFont: nsis
-
- !define APPNAME "Temp"
- name "${APPNAME}"
- outfile "$%temp%\${APPNAME}.exe"
- showInstDetails show
- !include MUI.nsh
- !include LogicLib.nsh
- !include winmessages.nsh
- !include Sections.nsh