mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.1 KiB
63 lines
2.1 KiB
/****************************Module*Header******************************\
|
|
* Module Name: message.c *
|
|
* *
|
|
* *
|
|
* *
|
|
* Created: 1989 *
|
|
* *
|
|
* Copyright (c) 1987 - 1991 Microsoft Corporation *
|
|
* *
|
|
* A general description of how the module is used goes here. *
|
|
* *
|
|
* Additional information such as restrictions, limitations, or special *
|
|
* algorithms used if they are externally visible or effect proper use *
|
|
* of the module. *
|
|
\***********************************************************************/
|
|
|
|
#include <windows.h>
|
|
#include "port1632.h"
|
|
|
|
#include "pbrush.h"
|
|
|
|
#define BUF1LEN 300
|
|
#define BUF2LEN 300
|
|
|
|
extern TCHAR NotEnoughMem[];
|
|
extern TCHAR pgmTitle[];
|
|
extern HWND pbrushWnd[];
|
|
extern int gfInvisible;
|
|
|
|
|
|
/* puts up error message for StringId, possibly merging in a string,
|
|
** and asks for the appropriate buttons and icons
|
|
*/
|
|
WORD SimpleMessage(WORD StringId, LPTSTR lpText, WORD style)
|
|
{
|
|
static TCHAR buf1[BUF1LEN];
|
|
static TCHAR buf2[BUF2LEN];
|
|
int Result;
|
|
|
|
if (gfInvisible)
|
|
return MB_OK;
|
|
|
|
if (StringId == IDSNotEnufMem) {
|
|
lstrcpy(buf1, NotEnoughMem);
|
|
style = MB_SYSTEMMODAL | MB_ICONHAND | MB_OK;
|
|
} else {
|
|
LoadString(hInst, StringId, buf1, CharSizeOf(buf1));
|
|
style |= MB_TASKMODAL;
|
|
}
|
|
|
|
if (lpText)
|
|
wsprintf(buf2, buf1, lpText, lpText);
|
|
else
|
|
lstrcpy(buf2, buf1);
|
|
Result = MessageBox(GetActiveWindow(), buf2, pgmTitle, style);
|
|
return Result;
|
|
}
|
|
|
|
/* puts up a dialog box with only an ok button */
|
|
void PbrushOkError(WORD StringId, WORD style)
|
|
{
|
|
SimpleMessage(StringId, NULL, (WORD)(MB_OK | style));
|
|
}
|