Added log window zooming accelerators

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7332 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2021-09-20 16:48:42 +00:00
parent 0b51c73f70
commit 10a9bc3d86
5 changed files with 54 additions and 32 deletions

View file

@ -198,12 +198,14 @@ typedef struct {
UINT AnimSpeed, FinalHeaderPos;
} ABOUTDLGDATA;
INT_PTR ShowAboutDialog(HWND hwndOwner);
INT_PTR CALLBACK SettingsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
typedef struct {
void*pOldMDD;
BOOL LoadingMode;
} SYMSETDLGDATA;
INT_PTR ShowSymbolSetDialog(HWND hwndOwner, BOOL LoadingSet);
INT_PTR CALLBACK CompressorProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
void SetScript(const TCHAR *script, bool clearArgs = true);
void CompileNSISScript();
@ -247,8 +249,8 @@ typedef struct NSISScriptData {
LPCTSTR compressor_name;
TCHAR compressor_stats[512];
LPCTSTR best_compressor_name;
// Added by Darren Owen (DrO) on 1/10/2003
int recompile_test;
WORD log_zoom;
} NSCRIPTDATA;
extern NSCRIPTDATA g_sdata;