UnicodeNSIS.nsi 406 B

12345678910111213141516171819202122232425
  1. !include MUI2.nsh
  2. Name `nsJSON plug-in`
  3. OutFile nsJSON_UnicodeNSIS.exe
  4. RequestExecutionLevel user
  5. ShowInstDetails show
  6. Unicode true
  7. !insertmacro MUI_PAGE_INSTFILES
  8. !insertmacro MUI_LANGUAGE English
  9. Section
  10. nsJSON::Set /tree testTree testNode /value testValue
  11. nsJSON::Get /tree testTree testNode /end
  12. Pop $R0
  13. DetailPrint $R0
  14. nsJSON::Serialize /tree testTree
  15. Pop $R0
  16. DetailPrint $R0
  17. SectionEnd