(kichik) MakeNSIS now sends output directly to MakeNSISw, faster, and no

more problems with foreign languages in the output.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1996 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2002-12-24 20:35:26 +00:00
parent db21b77527
commit 763d9a15b9
5 changed files with 281 additions and 265 deletions

View file

@ -58,6 +58,13 @@
#define WM_MAKENSIS_PROCESSCOMPLETE (WM_USER+1001)
enum {
MAKENSIS_NOTIFY_SCRIPT,
MAKENSIS_NOTIFY_WARNING,
MAKENSIS_NOTIFY_ERROR,
MAKENSIS_NOTIFY_OUTPUT
};
// Extern Variables
extern const char* NSISW_VERSION;
@ -79,7 +86,7 @@ typedef struct NSISScriptData {
char *brandingv;
int retcode;
DWORD logLength;
BOOL warnings;
DWORD warnings;
BOOL appended;
HINSTANCE hInstance;
HWND hwnd;