mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 06:38:37 -05:00
Move SaneDialogBox()/SaneEndDialog() from winmisc.c to windlg.c, since they
seem to be PuTTY(tel)-specific (at least at the moment). Might save a bit of space in the other binaries. [originally from svn r5410]
This commit is contained in:
parent
c60aa6b2f5
commit
e5d5da8bdd
@ -229,6 +229,57 @@ static int CALLBACK AboutProc(HWND hwnd, UINT msg,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int SaneDialogBox(HINSTANCE hinst,
|
||||||
|
LPCTSTR tmpl,
|
||||||
|
HWND hwndparent,
|
||||||
|
DLGPROC lpDialogFunc)
|
||||||
|
{
|
||||||
|
WNDCLASS wc;
|
||||||
|
HWND hwnd;
|
||||||
|
MSG msg;
|
||||||
|
int flags;
|
||||||
|
int ret;
|
||||||
|
int gm;
|
||||||
|
|
||||||
|
wc.style = CS_DBLCLKS | CS_SAVEBITS | CS_BYTEALIGNWINDOW;
|
||||||
|
wc.lpfnWndProc = DefDlgProc;
|
||||||
|
wc.cbClsExtra = 0;
|
||||||
|
wc.cbWndExtra = DLGWINDOWEXTRA + 8;
|
||||||
|
wc.hInstance = hinst;
|
||||||
|
wc.hIcon = NULL;
|
||||||
|
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
|
||||||
|
wc.hbrBackground = (HBRUSH) (COLOR_BACKGROUND +1);
|
||||||
|
wc.lpszMenuName = NULL;
|
||||||
|
wc.lpszClassName = "PuTTYConfigBox";
|
||||||
|
RegisterClass(&wc);
|
||||||
|
|
||||||
|
hwnd = CreateDialog(hinst, tmpl, hwndparent, lpDialogFunc);
|
||||||
|
|
||||||
|
SetWindowLong(hwnd, BOXFLAGS, 0); /* flags */
|
||||||
|
SetWindowLong(hwnd, BOXRESULT, 0); /* result from SaneEndDialog */
|
||||||
|
|
||||||
|
while ((gm=GetMessage(&msg, NULL, 0, 0)) > 0) {
|
||||||
|
flags=GetWindowLong(hwnd, BOXFLAGS);
|
||||||
|
if (!(flags & DF_END) && !IsDialogMessage(hwnd, &msg))
|
||||||
|
DispatchMessage(&msg);
|
||||||
|
if (flags & DF_END)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gm == 0)
|
||||||
|
PostQuitMessage(msg.wParam); /* We got a WM_QUIT, pass it on */
|
||||||
|
|
||||||
|
ret=GetWindowLong(hwnd, BOXRESULT);
|
||||||
|
DestroyWindow(hwnd);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void SaneEndDialog(HWND hwnd, int ret)
|
||||||
|
{
|
||||||
|
SetWindowLong(hwnd, BOXRESULT, ret);
|
||||||
|
SetWindowLong(hwnd, BOXFLAGS, DF_END);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Null dialog procedure.
|
* Null dialog procedure.
|
||||||
*/
|
*/
|
||||||
|
@ -65,57 +65,6 @@ char *get_username(void)
|
|||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SaneDialogBox(HINSTANCE hinst,
|
|
||||||
LPCTSTR tmpl,
|
|
||||||
HWND hwndparent,
|
|
||||||
DLGPROC lpDialogFunc)
|
|
||||||
{
|
|
||||||
WNDCLASS wc;
|
|
||||||
HWND hwnd;
|
|
||||||
MSG msg;
|
|
||||||
int flags;
|
|
||||||
int ret;
|
|
||||||
int gm;
|
|
||||||
|
|
||||||
wc.style = CS_DBLCLKS | CS_SAVEBITS | CS_BYTEALIGNWINDOW;
|
|
||||||
wc.lpfnWndProc = DefDlgProc;
|
|
||||||
wc.cbClsExtra = 0;
|
|
||||||
wc.cbWndExtra = DLGWINDOWEXTRA + 8;
|
|
||||||
wc.hInstance = hinst;
|
|
||||||
wc.hIcon = NULL;
|
|
||||||
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
|
|
||||||
wc.hbrBackground = (HBRUSH) (COLOR_BACKGROUND +1);
|
|
||||||
wc.lpszMenuName = NULL;
|
|
||||||
wc.lpszClassName = "PuTTYConfigBox";
|
|
||||||
RegisterClass(&wc);
|
|
||||||
|
|
||||||
hwnd = CreateDialog(hinst, tmpl, hwndparent, lpDialogFunc);
|
|
||||||
|
|
||||||
SetWindowLong(hwnd, BOXFLAGS, 0); /* flags */
|
|
||||||
SetWindowLong(hwnd, BOXRESULT, 0); /* result from SaneEndDialog */
|
|
||||||
|
|
||||||
while ((gm=GetMessage(&msg, NULL, 0, 0)) > 0) {
|
|
||||||
flags=GetWindowLong(hwnd, BOXFLAGS);
|
|
||||||
if (!(flags & DF_END) && !IsDialogMessage(hwnd, &msg))
|
|
||||||
DispatchMessage(&msg);
|
|
||||||
if (flags & DF_END)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gm == 0)
|
|
||||||
PostQuitMessage(msg.wParam); /* We got a WM_QUIT, pass it on */
|
|
||||||
|
|
||||||
ret=GetWindowLong(hwnd, BOXRESULT);
|
|
||||||
DestroyWindow(hwnd);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
void SaneEndDialog(HWND hwnd, int ret)
|
|
||||||
{
|
|
||||||
SetWindowLong(hwnd, BOXRESULT, ret);
|
|
||||||
SetWindowLong(hwnd, BOXFLAGS, DF_END);
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOL init_winver(void)
|
BOOL init_winver(void)
|
||||||
{
|
{
|
||||||
ZeroMemory(&osVersion, sizeof(osVersion));
|
ZeroMemory(&osVersion, sizeof(osVersion));
|
||||||
|
@ -341,14 +341,6 @@ void show_help(HWND hwnd);
|
|||||||
/*
|
/*
|
||||||
* Exports from winmisc.c.
|
* Exports from winmisc.c.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
int SaneDialogBox(HINSTANCE hinst,
|
|
||||||
LPCTSTR tmpl,
|
|
||||||
HWND hwndparent,
|
|
||||||
DLGPROC lpDialogFunc);
|
|
||||||
|
|
||||||
void SaneEndDialog(HWND hwnd, int ret);
|
|
||||||
|
|
||||||
extern OSVERSIONINFO osVersion;
|
extern OSVERSIONINFO osVersion;
|
||||||
BOOL init_winver(void);
|
BOOL init_winver(void);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user