This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; FontInstall.nsh >8 >8 >8 >8 >8 >8 >8 >8 | |
| !include LogicLib.nsh | |
| !include WinMessages.nsh | |
| !macro FontInstallHelper FontFileSrc FontFileDst FontInternalName Resource RegSuffix RegRoot | |
| ClearErrors | |
| ${IfNot} ${FileExists} "${FontFileDst}" | |
| File "/oname=${FontFileDst}" "${FontFileSrc}" | |
| ${EndIf} | |
| ${IfNot} ${Errors} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ** DbgCheckRegisters.nsh | |
| ** ===================== | |
| ** A header for validating that functions have not touched the registers. | |
| */ | |
| !macro _DbgRegisters_For pre pos list | |
| !if "${list}" == "" | |
| !define /ReDef list "$0$1$2$3$4$5$6$7$8$9$R0$R1$R2$R3$R4$R5$R6$R7$R8$R9" | |
| !endif |
OlderNewer