Wed Apr 20 14:53:35 1994 Bob Amstadt (bob@pooh) * [tools/build.c] [if1632/call.S] [if1632/Imakefile] Fixed bug for non-Linux systems. Apr 18, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [windows/win.c] Bug fixed in CreateWindowEx() : Now use SetMenu() for menubar setup. New empty stub for function SetSysModalWindow(). * [misc/exec.c] New empty stub for function ExitWindows(). * [objects/font.c] New empty stub for function EnumFonts(). * New file [misc/property.c] New functions RemoveProp(), GetProp(), SetProp() & EnumProps(). * New file [misc/shell.c] New empty stubs for function RegisterShellProc(), ShellExecute() & ShellProc(). * New files [loader/task.c] & [include/task.h] Move functions GetWindowTask(), GetNumTask(), EnumTaskWindows() from 'loader/library.c'. * [if1632/user.c] [if1632/kernel.c] Put Atoms functions entries. * [controls/combo.c] New functions DirDlgSelectComboBox() & DirDlgListComboBox(). * [controls/listbox.c] New functions DirDlgSelect() & DirDlgList(). Sun Apr 17 20:57:59 1994 Erik Bos (erik@trashcan.hacktic.nl) * [objects/test.c] GrayString() added. * [if1632/callback.c] CallGrayStringProc() added. * [if1632/relay.c] [if1632/mmsystem.spec] Added. * [if1632/kernel.spec] [if1632/user.spec] Added forgotten specs for atom functions. Tue Apr 12 00:05:31 1994 Bob Amstadt (bob@pooh) * misc/spy.c (SpyInit): Added more message types * [windows/mdi.c] [include/mdi.h] Maximizing and restoring child windows. Tiling of child windows. Mon Apr 11 20:48:28 1994 Alexandre Julliard (julliard@lamisun.epfl.ch) * [windows/winpos.c] Revert focus and activation to previous window when hiding a window. * [windows/syscolor.c] Implemented system color objects (brushes and pens created at SetSysColor() time for better performance). * [windows/graphics.c] [windows/nonclient.c] [controls/button.c] Changed painting code to use system color objects. * [windows/message.c] New function MSG_InternalGetMessage() for internal messages loops (e.g. for dialogs or menus). * [windows/hook.c] [include/hook.h] (New files) Beginning of the window hooks implementation. * [windows/dialog.c] Use new function MSG_InternalGetMessage() in DialogBox(). * [if1632/callback.c] Added function CallHookProc(). Apr 11, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [windows/event.c] Bug fix : WM_CHARs are sent to focused window like WM_KEY???. * [misc/exec.c] Nothing much more than a stub for LoadModule(), I saw there a lot to be done in that corner, I will come back later ... * [loader/library.c] New functions GetWindowTask(), GetNumTask(), EnumTaskWindows() and associated modules & tasks linked-lists. (it's only an 'emerging bud', more to come next weeks). * [loader/wine.c] Use LoadLibrary() instead of LoadImage() for 'sysres.dll'. * [control/menu.c] You can now click outside menu region without problem. Keyboard navig more smootly, even if a child has the focus. Bug fix in InsertItem(), (bad linklist when insert point not found). change Realloc for Free & Alloc in ModifyItem(). MF_STRING now set BLACK_PEN to fix bug of bad color of the underscores done by DrawText(), (maybe it should done in DrawText() itself ?). Sun Apr 10 14:06:08 1994 Erik Bos (erik@trashcan.hacktic.nl) * [misc/profile.c] .INI files will now be stored in / loaded from the windows dir if no path is supplied. * [if1632/kernel.spec] Fixed GetDriveType's prototype. * [if1632/winsock.spec] [include/winsock.h] [misc/winsocket.c] Fixed prototypes: winsock uses a word as socket handle not an int. * [misc/winsocket.c] Added heap allocation for returned structures. Added non-blocking WSAAsyncGetXbyY() functions as blocking ones. * [loader/wine.c] Added IsDLLLoaded(), used in LoadImage() to prevent loading a dll multiple times. Directory is added to wine's path when a fullpath is supplied when starting wine. LoadImage(): DLL filename used instead DLL's own internal name, fixes 'Bad DLL name' errors. Sat Apr 9 08:26:03 1994 David Metcalfe <david@prism.demon.co.uk> * [controls/edit.c] [controls/widgets.c] First release of edit control.
433 lines
12 KiB
C
433 lines
12 KiB
C
/*
|
|
* 'Wine' MessageBox function handling
|
|
*
|
|
* Copyright 1993 Martin Ayotte
|
|
*/
|
|
|
|
static char Copyright[] = "Copyright Martin Ayotte, 1993";
|
|
|
|
#define DEBUG_MSGBOX
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <windows.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include "prototypes.h"
|
|
#include "heap.h"
|
|
#include "win.h"
|
|
|
|
extern HINSTANCE hSysRes;
|
|
extern HBITMAP hUpArrow;
|
|
|
|
typedef struct tagMSGBOX {
|
|
LPSTR Title;
|
|
LPSTR Str;
|
|
WORD wType;
|
|
WORD wRetVal;
|
|
BOOL ActiveFlg;
|
|
HWND hWndYes;
|
|
HWND hWndNo;
|
|
HWND hWndCancel;
|
|
HICON hIcon;
|
|
RECT rectIcon;
|
|
RECT rectStr;
|
|
} MSGBOX;
|
|
typedef MSGBOX FAR* LPMSGBOX;
|
|
|
|
LONG SystemMessageBoxProc(HWND hwnd, WORD message, WORD wParam, LONG lParam);
|
|
|
|
/**************************************************************************
|
|
* MessageBox [USER.1]
|
|
*/
|
|
|
|
int MessageBox(HWND hWnd, LPSTR str, LPSTR title, WORD type)
|
|
{
|
|
HWND hDlg, hWndOld;
|
|
WND *wndPtr;
|
|
WNDCLASS wndClass;
|
|
MSG msg;
|
|
MSGBOX mb;
|
|
DWORD dwStyle;
|
|
HINSTANCE hInst;
|
|
wndPtr = WIN_FindWndPtr(hWnd);
|
|
if (wndPtr == NULL) {
|
|
hInst = hSysRes;
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox(NULL, '%s', '%s', %04X)\n", str, title, type);
|
|
#endif
|
|
}
|
|
else {
|
|
hInst = wndPtr->hInstance;
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox(%04X, '%s', '%s', %04X)\n", hWnd, str, title, type);
|
|
#endif
|
|
}
|
|
wndClass.style = CS_HREDRAW | CS_VREDRAW ;
|
|
wndClass.lpfnWndProc = (WNDPROC)SystemMessageBoxProc;
|
|
wndClass.cbClsExtra = 0;
|
|
wndClass.cbWndExtra = 0;
|
|
wndClass.hInstance = hInst;
|
|
wndClass.hIcon = (HICON)NULL;
|
|
wndClass.hCursor = LoadCursor((HANDLE)NULL, IDC_ARROW);
|
|
wndClass.hbrBackground = GetStockObject(WHITE_BRUSH);
|
|
wndClass.lpszMenuName = NULL;
|
|
wndClass.lpszClassName = "MESSAGEBOX";
|
|
if (!RegisterClass(&wndClass)) {
|
|
printf("Unable to Register class 'MESSAGEBOX' !\n");
|
|
return 0;
|
|
}
|
|
memset(&mb, 0, sizeof(MSGBOX));
|
|
mb.Title = title;
|
|
mb.Str = str;
|
|
mb.wType = type;
|
|
mb.ActiveFlg = TRUE;
|
|
dwStyle = WS_POPUP | WS_DLGFRAME | WS_VISIBLE;
|
|
if ((type & (MB_SYSTEMMODAL | MB_TASKMODAL)) == 0) dwStyle |= WS_CAPTION;
|
|
hWndOld = GetFocus();
|
|
hDlg = CreateWindow("MESSAGEBOX", title, dwStyle, 100, 150, 400, 120,
|
|
(HWND)NULL, (HMENU)NULL, hInst, (LPSTR)&mb);
|
|
if (hDlg == 0) {
|
|
printf("Unable to create 'MESSAGEBOX' window !\n");
|
|
return 0;
|
|
}
|
|
#ifdef DEBUG_MSGBOX
|
|
printf( "MessageBox // before Msg Loop !\n");
|
|
#endif
|
|
while(TRUE) {
|
|
if (!mb.ActiveFlg) break;
|
|
if (!GetMessage(&msg, (HWND)NULL, 0, 0)) break;
|
|
TranslateMessage(&msg);
|
|
if ((type & (MB_SYSTEMMODAL | MB_TASKMODAL)) != 0 &&
|
|
msg.hwnd != hDlg) {
|
|
switch(msg.message) {
|
|
case WM_KEYDOWN:
|
|
case WM_LBUTTONDOWN:
|
|
case WM_MBUTTONDOWN:
|
|
case WM_RBUTTONDOWN:
|
|
MessageBeep(0);
|
|
break;
|
|
}
|
|
}
|
|
DispatchMessage(&msg);
|
|
}
|
|
SetFocus(hWndOld);
|
|
if (!UnregisterClass("MESSAGEBOX", hInst)) return 0;
|
|
#ifdef DEBUG_MSGBOX
|
|
printf( "MessageBox return %04X !\n", mb.wRetVal);
|
|
#endif
|
|
return(mb.wRetVal);
|
|
}
|
|
|
|
|
|
LPMSGBOX MsgBoxGetStorageHeader(HWND hwnd)
|
|
{
|
|
WND *wndPtr;
|
|
LPMSGBOX lpmb;
|
|
wndPtr = WIN_FindWndPtr(hwnd);
|
|
if (wndPtr == 0) {
|
|
printf("Bad Window handle on MessageBox !\n");
|
|
return 0;
|
|
}
|
|
lpmb = *((LPMSGBOX *)&wndPtr->wExtra[1]);
|
|
return lpmb;
|
|
}
|
|
|
|
|
|
|
|
|
|
LONG SystemMessageBoxProc(HWND hWnd, WORD message, WORD wParam, LONG lParam)
|
|
{
|
|
WND *wndPtr;
|
|
CREATESTRUCT *createStruct;
|
|
PAINTSTRUCT ps;
|
|
HDC hDC;
|
|
DWORD OldTextColor;
|
|
RECT rect;
|
|
LPMSGBOX lpmb;
|
|
LPMSGBOX lpmbInit;
|
|
BITMAP bm;
|
|
HBITMAP hBitMap;
|
|
HDC hMemDC;
|
|
HICON hIcon;
|
|
HINSTANCE hInst2;
|
|
int x;
|
|
switch(message) {
|
|
case WM_CREATE:
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox WM_CREATE !\n");
|
|
#endif
|
|
wndPtr = WIN_FindWndPtr(hWnd);
|
|
createStruct = (CREATESTRUCT *)lParam;
|
|
lpmbInit = (LPMSGBOX)createStruct->lpCreateParams;
|
|
if (lpmbInit == 0) break;
|
|
*((LPMSGBOX *)&wndPtr->wExtra[1]) = lpmbInit;
|
|
lpmb = MsgBoxGetStorageHeader(hWnd);
|
|
GetClientRect(hWnd, &rect);
|
|
CopyRect(&lpmb->rectStr, &rect);
|
|
lpmb->rectStr.bottom -= 32;
|
|
switch(lpmb->wType & MB_TYPEMASK) {
|
|
case MB_OK :
|
|
lpmb->hWndYes = CreateWindow("BUTTON", "&Ok",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 - 30, rect.bottom - 25,
|
|
60, 18, hWnd, IDOK, wndPtr->hInstance, 0L);
|
|
break;
|
|
case MB_OKCANCEL :
|
|
lpmb->hWndYes = CreateWindow("BUTTON", "&Ok",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 - 65, rect.bottom - 25,
|
|
60, 18, hWnd, IDOK, wndPtr->hInstance, 0L);
|
|
lpmb->hWndCancel = CreateWindow("BUTTON", "&Cancel",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 + 5, rect.bottom - 25,
|
|
60, 18, hWnd, IDCANCEL, wndPtr->hInstance, 0L);
|
|
break;
|
|
case MB_ABORTRETRYIGNORE :
|
|
lpmb->hWndYes = CreateWindow("BUTTON", "&Retry",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 - 100, rect.bottom - 25,
|
|
60, 18, hWnd, IDRETRY, wndPtr->hInstance, 0L);
|
|
lpmb->hWndNo = CreateWindow("BUTTON", "&Ignore",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 - 30, rect.bottom - 25,
|
|
60, 18, hWnd, IDIGNORE, wndPtr->hInstance, 0L);
|
|
lpmb->hWndCancel = CreateWindow("BUTTON", "&Abort",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 + 40, rect.bottom - 25,
|
|
60, 18, hWnd, IDABORT, wndPtr->hInstance, 0L);
|
|
break;
|
|
case MB_YESNO :
|
|
lpmb->hWndYes = CreateWindow("BUTTON", "&Yes",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 - 65, rect.bottom - 25,
|
|
60, 18, hWnd, IDYES, wndPtr->hInstance, 0L);
|
|
lpmb->hWndNo = CreateWindow("BUTTON", "&No",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 + 5, rect.bottom - 25,
|
|
60, 18, hWnd, IDNO, wndPtr->hInstance, 0L);
|
|
break;
|
|
case MB_YESNOCANCEL :
|
|
lpmb->hWndYes = CreateWindow("BUTTON", "&Yes",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 - 100, rect.bottom - 25,
|
|
60, 18, hWnd, IDYES, wndPtr->hInstance, 0L);
|
|
lpmb->hWndNo = CreateWindow("BUTTON", "&No",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 - 30, rect.bottom - 25,
|
|
60, 18, hWnd, IDNO, wndPtr->hInstance, 0L);
|
|
lpmb->hWndCancel = CreateWindow("BUTTON", "&Cancel",
|
|
WS_CHILD | WS_CLIPCHILDREN | WS_VISIBLE | BS_PUSHBUTTON,
|
|
rect.right / 2 + 40, rect.bottom - 25,
|
|
60, 18, hWnd, IDCANCEL, wndPtr->hInstance, 0L);
|
|
break;
|
|
}
|
|
switch(lpmb->wType & MB_ICONMASK) {
|
|
case MB_ICONEXCLAMATION:
|
|
printf("MsgBox LoadIcon Exclamation !\n");
|
|
lpmb->hIcon = LoadIcon((HINSTANCE)NULL, IDI_EXCLAMATION);
|
|
break;
|
|
case MB_ICONQUESTION:
|
|
printf("MsgBox LoadIcon Question !\n");
|
|
lpmb->hIcon = LoadIcon((HINSTANCE)NULL, IDI_QUESTION);
|
|
break;
|
|
case MB_ICONASTERISK:
|
|
printf("MsgBox LoadIcon Asterisk !\n");
|
|
lpmb->hIcon = LoadIcon((HINSTANCE)NULL, IDI_ASTERISK);
|
|
break;
|
|
case MB_ICONHAND:
|
|
printf("MsgBox LoadIcon Hand !\n");
|
|
lpmb->hIcon = LoadIcon((HINSTANCE)NULL, IDI_HAND);
|
|
break;
|
|
}
|
|
if (lpmb->hIcon != (HICON)NULL) {
|
|
SetRect(&lpmb->rectIcon, 16,
|
|
lpmb->rectStr.bottom / 2 - 16, 48,
|
|
lpmb->rectStr.bottom / 2 + 16);
|
|
lpmb->rectStr.left += 64;
|
|
}
|
|
break;
|
|
case WM_PAINT:
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox WM_PAINT !\n");
|
|
#endif
|
|
lpmb = MsgBoxGetStorageHeader(hWnd);
|
|
CopyRect(&rect, &lpmb->rectStr);
|
|
hDC = BeginPaint(hWnd, &ps);
|
|
OldTextColor = SetTextColor(hDC, 0x00000000);
|
|
if (lpmb->hIcon)
|
|
DrawIcon(hDC, lpmb->rectIcon.left,
|
|
lpmb->rectIcon.top, lpmb->hIcon);
|
|
DrawText(hDC, lpmb->Str, -1, &rect,
|
|
DT_CALCRECT | DT_CENTER | DT_WORDBREAK);
|
|
rect.top = lpmb->rectStr.bottom / 2 - rect.bottom / 2;
|
|
rect.bottom = lpmb->rectStr.bottom / 2 + rect.bottom / 2;
|
|
DrawText(hDC, lpmb->Str, -1, &rect, DT_CENTER | DT_WORDBREAK);
|
|
SetTextColor(hDC, OldTextColor);
|
|
EndPaint(hWnd, &ps);
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox End of WM_PAINT !\n");
|
|
#endif
|
|
break;
|
|
case WM_DESTROY:
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox WM_DESTROY !\n");
|
|
#endif
|
|
ReleaseCapture();
|
|
lpmb = MsgBoxGetStorageHeader(hWnd);
|
|
lpmb->ActiveFlg = FALSE;
|
|
if (lpmb->hIcon) DestroyIcon(lpmb->hIcon);
|
|
if (lpmb->hWndYes) DestroyWindow(lpmb->hWndYes);
|
|
if (lpmb->hWndNo) DestroyWindow(lpmb->hWndNo);
|
|
if (lpmb->hWndCancel) DestroyWindow(lpmb->hWndCancel);
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox WM_DESTROY end !\n");
|
|
#endif
|
|
break;
|
|
case WM_COMMAND:
|
|
lpmb = MsgBoxGetStorageHeader(hWnd);
|
|
if (wParam < IDOK || wParam > IDNO) return(0);
|
|
lpmb->wRetVal = wParam;
|
|
#ifdef DEBUG_MSGBOX
|
|
printf("MessageBox sending WM_CLOSE !\n");
|
|
#endif
|
|
PostMessage(hWnd, WM_CLOSE, 0, 0L);
|
|
break;
|
|
case WM_CHAR:
|
|
lpmb = MsgBoxGetStorageHeader(hWnd);
|
|
if (wParam >= 'a' || wParam <= 'z') wParam -= 'a' - 'A';
|
|
switch(wParam) {
|
|
case 'Y':
|
|
lpmb->wRetVal = IDYES;
|
|
break;
|
|
case 'O':
|
|
lpmb->wRetVal = IDOK;
|
|
break;
|
|
case 'R':
|
|
lpmb->wRetVal = IDRETRY;
|
|
break;
|
|
case 'A':
|
|
lpmb->wRetVal = IDABORT;
|
|
break;
|
|
case 'N':
|
|
lpmb->wRetVal = IDNO;
|
|
break;
|
|
case 'I':
|
|
lpmb->wRetVal = IDIGNORE;
|
|
break;
|
|
case 'C':
|
|
case VK_ESCAPE:
|
|
lpmb->wRetVal = IDCANCEL;
|
|
break;
|
|
default:
|
|
return 0;
|
|
}
|
|
PostMessage(hWnd, WM_CLOSE, 0, 0L);
|
|
break;
|
|
default:
|
|
return DefWindowProc(hWnd, message, wParam, lParam );
|
|
}
|
|
return(0);
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
* "About Wine..." Dialog Box
|
|
*/
|
|
BOOL FAR PASCAL AboutWine_Proc(HWND hDlg, WORD msg, WORD wParam, LONG lParam)
|
|
{
|
|
HDC hDC;
|
|
HDC hMemDC;
|
|
PAINTSTRUCT ps;
|
|
int OldBackMode;
|
|
HFONT hOldFont;
|
|
RECT rect;
|
|
BITMAP bm;
|
|
int X;
|
|
OFSTRUCT ofstruct;
|
|
static LPSTR ptr;
|
|
static char str[256];
|
|
static HBITMAP hBitMap = 0;
|
|
static BOOL CreditMode;
|
|
static HANDLE hFile = 0;
|
|
switch (msg) {
|
|
case WM_INITDIALOG:
|
|
CreditMode = FALSE;
|
|
strcpy(str, "WINELOGO");
|
|
hBitMap = LoadBitmap((HINSTANCE)NULL, (LPSTR)str);
|
|
|
|
strcpy(str, "PROPOSED_LICENSE");
|
|
printf("str = '%s'\n", str);
|
|
hFile = OpenFile((LPSTR)str, &ofstruct, OF_READ);
|
|
ptr = (LPSTR)malloc(2048);
|
|
lseek(hFile, 0L, SEEK_SET);
|
|
_lread(hFile, ptr, 2000L);
|
|
close(hFile);
|
|
return TRUE;
|
|
case WM_PAINT:
|
|
hDC = BeginPaint(hDlg, &ps);
|
|
GetClientRect(hDlg, &rect);
|
|
if (CreditMode) {
|
|
FillRect(hDC, &rect, GetStockObject(WHITE_BRUSH));
|
|
InflateRect(&rect, -8, -8);
|
|
DrawText(hDC, ptr, -1, &rect, DT_LEFT | DT_WORDBREAK);
|
|
EndPaint(hDlg, &ps);
|
|
return TRUE;
|
|
}
|
|
FillRect(hDC, &rect, GetStockObject(GRAY_BRUSH));
|
|
InflateRect(&rect, -3, -3);
|
|
FrameRect(hDC, &rect, GetStockObject(BLACK_BRUSH));
|
|
InflateRect(&rect, -10, -10);
|
|
hMemDC = CreateCompatibleDC(hDC);
|
|
SelectObject(hMemDC, hBitMap);
|
|
GetObject(hBitMap, sizeof(BITMAP), (LPSTR)&bm);
|
|
BitBlt(hDC, rect.left, rect.top, bm.bmWidth, bm.bmHeight,
|
|
hMemDC, 0, 0, SRCCOPY);
|
|
DeleteDC(hMemDC);
|
|
EndPaint(hDlg, &ps);
|
|
return TRUE;
|
|
case WM_COMMAND:
|
|
switch (wParam)
|
|
{
|
|
case IDYES:
|
|
if (!CreditMode) {
|
|
SetWindowPos(hDlg, (HWND)NULL, 0, 0, 640, 480,
|
|
SWP_NOMOVE | SWP_NOZORDER);
|
|
}
|
|
else {
|
|
SetWindowPos(hDlg, (HWND)NULL, 0, 0, 320, 250,
|
|
SWP_NOMOVE | SWP_NOZORDER);
|
|
}
|
|
CreditMode = !CreditMode;
|
|
ShowWindow(GetDlgItem(hDlg, IDYES), CreditMode ? SW_HIDE : SW_SHOW);
|
|
ShowWindow(GetDlgItem(hDlg, IDOK), CreditMode ? SW_HIDE : SW_SHOW);
|
|
InvalidateRect(hDlg, (LPRECT)NULL, TRUE);
|
|
UpdateWindow(hDlg);
|
|
return TRUE;
|
|
case IDCANCEL:
|
|
case IDOK:
|
|
CloseDLG: if (hBitMap != 0 ) DeleteObject(hBitMap);
|
|
if (ptr != NULL) free(ptr);
|
|
EndDialog(hDlg, TRUE);
|
|
return TRUE;
|
|
default:
|
|
return TRUE;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
/**************************************************************************
|
|
* FatalAppExit [USER.137]
|
|
*/
|
|
|
|
void FatalAppExit(WORD wAction, LPSTR str)
|
|
{
|
|
MessageBox((HWND)NULL, str, NULL, MB_SYSTEMMODAL | MB_OK);
|
|
exit(1);
|
|
}
|