size optimization - use GetNSISString to do complicated stirng processing

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4971 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-03-03 14:18:49 +00:00
parent b00c69290f
commit 05d910c289
6 changed files with 58 additions and 21 deletions

View file

@ -95,6 +95,14 @@ void header_writer::write(const header *data)
m_sink->write_int(data->install_directory_ptr);
m_sink->write_int(data->install_directory_auto_append);
#ifdef NSIS_CONFIG_UNINSTALL_SUPPORT
m_sink->write_int(data->str_uninstchild);
m_sink->write_int(data->str_uninstcmd);
#endif//NSIS_CONFIG_UNINSTALL_SUPPORT
#ifdef NSIS_SUPPORT_MOVEONREBOOT
m_sink->write_int(data->str_wininit);
#endif//NSIS_SUPPORT_MOVEONREBOOT
}
void section_writer::write(const section *data)