ReactOS 0.4.15-dev-7788-g1ad9096
messagebox.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Tests
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: Tests the undocumented user32.dll API SoftModalMessageBox()
5 * and the MB_SERVICE_NOTIFICATION flag of the MessageBox*() APIs.
6 * COPYRIGHT: Copyright 2018 Hermes Belusca-Maito
7 */
8
9#include <stdio.h>
10#include <stdlib.h>
11#include <conio.h>
12
13#include <windef.h>
14#include <winbase.h>
15#include <winuser.h>
16
17#include "resource.h"
18
19/* Adjust according to your platform! -- ReactOS is currently compatible with Windows Server 2003 */
20#undef _WIN32_WINNT
21#define _WIN32_WINNT _WIN32_WINNT_WS03 // _WIN32_WINNT_WIN2K // _WIN32_WINNT_WS03 // _WIN32_WINNT_WIN7
22
23typedef struct _MSGBOXDATA
24{
25 MSGBOXPARAMSW mbp; // Size: 0x28 (x86), 0x50 (x64)
26 HWND hwndOwner; // Will be converted to PWND
27#if defined(_WIN32) && (_WIN32_WINNT >= _WIN32_WINNT_WIN7) /* (NTDDI_VERSION >= NTDDI_WIN7) */
28 DWORD dwPadding;
29#endif
31 INT* pidButton; // Array of button IDs
32 LPCWSTR* ppszButtonText; // Array of button text strings
33 DWORD dwButtons; // Number of buttons
34 UINT uDefButton; // Default button ID
35 UINT uCancelId; // Button ID corresponding to Cancel action
36#if (_WIN32_WINNT >= _WIN32_WINNT_WINXP) /* (NTDDI_VERSION >= NTDDI_WINXP) */
37 DWORD dwTimeout; // Message box timeout
38#endif
40#if (_WIN32_WINNT >= _WIN32_WINNT_WIN7) /* (NTDDI_VERSION >= NTDDI_WIN7) */
42#endif
44
45
46#if defined(_WIN64)
47
48#if (_WIN32_WINNT >= _WIN32_WINNT_WIN7) /* (NTDDI_VERSION >= NTDDI_WIN7) */
49C_ASSERT(sizeof(MSGBOXDATA) == 0x98);
50#elif (_WIN32_WINNT <= _WIN32_WINNT_WS03) /* (NTDDI_VERSION == NTDDI_WS03) */
51C_ASSERT(sizeof(MSGBOXDATA) == 0x88);
52#endif
53
54#else
55
56#if (_WIN32_WINNT <= _WIN32_WINNT_WIN2K) /* (NTDDI_VERSION <= NTDDI_WIN2KSP4) */
57C_ASSERT(sizeof(MSGBOXDATA) == 0x48);
58#elif (_WIN32_WINNT >= _WIN32_WINNT_WIN7) /* (NTDDI_VERSION >= NTDDI_WIN7) */
59C_ASSERT(sizeof(MSGBOXDATA) == 0x60);
60#else // (_WIN32_WINNT == _WIN32_WINNT_WINXP || _WIN32_WINNT == _WIN32_WINNT_WS03) /* (NTDDI_VERSION == NTDDI_WS03) */
61C_ASSERT(sizeof(MSGBOXDATA) == 0x4C);
62#endif
63
64#endif
65
66
67//
68// Example taken from http://rsdn.org/forum/winapi/3273168.1
69// See also http://www.vbforums.com/showthread.php?840593-Message-Box-with-Four-Buttons
70//
72{
73 typedef int (WINAPI *SOFTMODALMESSAGEBOX)(LPMSGBOXDATA lpMsgBoxData);
74 // int WINAPI SoftModalMessageBox(IN LPMSGBOXDATA lpMsgBoxData);
75 SOFTMODALMESSAGEBOX SoftModalMessageBox = NULL;
76
78 int res = 0;
79
80 INT pids[] =
81 {
82 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13 /*, 2*/
83 };
84 /* NOTE: Buttons do NOT support resource IDs specifications! */
85 LPCWSTR ppText[] =
86 {
87 L"Button 1", L"Button 2", L"Button 3", L"Button 4", L"Button 5", L"Button 6", L"Button 7", L"Button 8", L"Button 9", L"Button 10", L"Button 11", L"Button 12", L"Button 13"
88 };
89
90 ZeroMemory(&data, sizeof(data));
91 data.mbp.cbSize = sizeof(data.mbp);
92 data.mbp.hwndOwner = FindWindowW(L"Shell_TrayWnd", NULL);
93 data.mbp.hInstance = GetModuleHandleW(NULL);
94 data.mbp.lpszText = L"This is a message box made using the undocumented SoftModalMessageBox() API.";
95 data.mbp.lpszCaption = MAKEINTRESOURCEW(IDS_RES_CAPTION); // L"SoftModalMessageBox";
96 data.mbp.lpfnMsgBoxCallback = NULL; // SoftModalMessageBoxCallback;
98
99 data.wLanguageId = 0;
100 data.pidButton = pids;
101 data.ppszButtonText = ppText;
102 data.dwButtons = _countof(pids);
103 data.uDefButton = 2;
104 data.uCancelId = 0;
105#if (_WIN32_WINNT >= _WIN32_WINNT_WINXP) /* (NTDDI_VERSION >= NTDDI_WINXP) */
106 data.dwTimeout = 3 * 1000;
107#endif
108
109 SoftModalMessageBox = (SOFTMODALMESSAGEBOX)GetProcAddress(GetModuleHandleW(L"user32.dll"), "SoftModalMessageBox");
111 {
112 printf("SoftModalMessageBoxW not found in user32.dll\n");
113 }
114 else
115 {
117 printf("Returned value = %i\n", res);
118 }
119}
120
122{
123 int res;
124
125 res = MessageBoxW(NULL, L"Hello World!", L"MB_SERVICE_NOTIFICATION",
126 MB_YESNOCANCEL | MB_DEFBUTTON3 | MB_ICONINFORMATION | /* MB_DEFAULT_DESKTOP_ONLY | */ MB_SERVICE_NOTIFICATION);
127 printf("Returned value = %i\n", res);
128}
129
130int wmain(int argc, WCHAR* argv[])
131{
132 printf("Testing SoftModalMessageBox()...\n");
134 printf("\n");
135
136 printf("Press any key to continue...\n");
137 _getch();
138 printf("\n");
139
140 printf("Testing MB_SERVICE_NOTIFICATION...\n");
142 printf("\n");
143
144 printf("Press any key to quit...\n");
145 _getch();
146 return 0;
147}
static int argc
Definition: ServiceArgs.c:12
#define NULL
Definition: types.h:112
#define GetProcAddress(x, y)
Definition: compat.h:753
HMODULE WINAPI GetModuleHandleW(LPCWSTR lpModuleName)
Definition: loader.c:838
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Definition: typeof.h:31
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
#define printf
Definition: freeldr.h:93
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: gl.h:1950
GLuint res
Definition: glext.h:9613
#define C_ASSERT(e)
Definition: intsafe.h:73
struct _MSGBOXDATA * LPMSGBOXDATA
void TestSoftModalMsgBox(void)
Definition: messagebox.c:71
struct _MSGBOXDATA MSGBOXDATA
void TestMsgBoxServiceNotification(void)
Definition: messagebox.c:121
struct _MSGBOXDATA * PMSGBOXDATA
#define IDS_RES_CAPTION
Definition: resource.h:1
#define argv
Definition: mplay32.c:18
_In_ HANDLE _In_ DWORD _In_ DWORD _Inout_opt_ LPOVERLAPPED _In_opt_ LPTRANSMIT_FILE_BUFFERS _In_ DWORD dwReserved
Definition: mswsock.h:95
unsigned int UINT
Definition: ndis.h:50
#define L(x)
Definition: ntvdm.h:50
int wmain()
int _getch()
Definition: getch.c:16
#define _countof(array)
Definition: sndvol32.h:68
DWORD dwButtons
Definition: messagebox.c:33
UINT uCancelId
Definition: messagebox.c:35
INT * pidButton
Definition: messagebox.c:31
WORD wLanguageId
Definition: messagebox.c:30
HWND hwndOwner
Definition: messagebox.c:26
DWORD dwReserved0
Definition: messagebox.c:39
DWORD dwTimeout
Definition: messagebox.c:37
LPCWSTR * ppszButtonText
Definition: messagebox.c:32
UINT uDefButton
Definition: messagebox.c:34
MSGBOXPARAMSW mbp
Definition: messagebox.c:25
int32_t INT
Definition: typedefs.h:58
int WINAPI SoftModalMessageBox(IN LPMSGBOXDATA lpMsgBoxData)
Definition: messagebox.c:617
#define ZeroMemory
Definition: winbase.h:1712
#define WINAPI
Definition: msvc.h:6
#define MB_DEFBUTTON3
Definition: winuser.h:800
#define MB_RETRYCANCEL
Definition: winuser.h:805
int WINAPI MessageBoxW(_In_opt_ HWND hWnd, _In_opt_ LPCWSTR lpText, _In_opt_ LPCWSTR lpCaption, _In_ UINT uType)
#define MB_ICONINFORMATION
Definition: winuser.h:802
HWND WINAPI FindWindowW(_In_opt_ LPCWSTR, _In_opt_ LPCWSTR)
#define MAKEINTRESOURCEW(i)
Definition: winuser.h:582
#define MB_YESNOCANCEL
Definition: winuser.h:818
__wchar_t WCHAR
Definition: xmlstorage.h:180
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185