Displaying 1 result from an estimated 1 matches for "wait_dlgproc".
2010 May 15
2
Wineboot: useless dialog
Hi!
I wonder about something, which disturb me:
thisone (wineboot.c):
Code:
static INT_PTR CALLBACK wait_dlgproc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
{
switch (msg)
{
case WM_INITDIALOG:
{
WCHAR *buffer, text[1024];
const WCHAR *name = (WCHAR *)lp;
HICON icon = LoadImageW( 0, (LPCWSTR)IDI_WINLOGO, IMAGE_ICON, 48, 48, LR_SHARED );
Send...