woohoo 36.0kb for zlib header
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1106 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
5b14215756
commit
2093439acd
3 changed files with 21 additions and 19 deletions
|
@ -94,7 +94,7 @@ static BOOL CALLBACK UninstProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM l
|
|||
|
||||
static DWORD WINAPI install_thread(LPVOID p);
|
||||
|
||||
HWND NSISCALL bgWnd_Init(HINSTANCE hInstance, int color1, int color2, int);
|
||||
HWND NSISCALL bgWnd_Init();
|
||||
|
||||
HWND insthwnd, insthwnd2,insthwndbutton;
|
||||
|
||||
|
@ -386,7 +386,7 @@ int NSISCALL ui_doinstall(void)
|
|||
#ifdef NSIS_SUPPORT_BGBG
|
||||
if (g_inst_cmnheader->bg_color1 != -1)
|
||||
{
|
||||
m_bgwnd=bgWnd_Init(g_hInstance,g_inst_cmnheader->bg_color1,g_inst_cmnheader->bg_color2,g_inst_cmnheader->bg_textcolor);
|
||||
m_bgwnd=bgWnd_Init();
|
||||
}
|
||||
#endif//NSIS_SUPPORT_BGBG
|
||||
#ifdef NSIS_SUPPORT_CODECALLBACKS
|
||||
|
@ -400,7 +400,7 @@ int NSISCALL ui_doinstall(void)
|
|||
|
||||
#ifdef NSIS_CONFIG_LICENSEPAGE
|
||||
{ // load richedit DLL
|
||||
WNDCLASS wc={0,};
|
||||
static WNDCLASS wc;
|
||||
static char str1[]="RichEd20.dll";
|
||||
static char str2[]="RichEdit20A";
|
||||
if (!LoadLibrary(str1))
|
||||
|
@ -911,7 +911,7 @@ static BOOL CALLBACK DirProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPar
|
|||
|
||||
TVHITTESTINFO NSISCALL hit_test(HWND tree)
|
||||
{
|
||||
TVHITTESTINFO ht = {0};
|
||||
static TVHITTESTINFO ht;
|
||||
DWORD dwpos = GetMessagePos();
|
||||
|
||||
ht.pt.x = GET_X_LPARAM(dwpos);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue