winetest: Fix dialog prototypes.
This commit is contained in:
parent
a6ea0f61d9
commit
5ea2a17776
|
@ -323,7 +323,7 @@ EditTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||||
return CallWindowProcA (DefEditProc, hwnd, msg, wParam, lParam);
|
return CallWindowProcA (DefEditProc, hwnd, msg, wParam, lParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
static BOOL CALLBACK
|
static INT_PTR CALLBACK
|
||||||
AskTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
AskTagProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
|
@ -376,7 +376,7 @@ qAsk (va_list ap)
|
||||||
return MBdefault (va_arg (ap, int));
|
return MBdefault (va_arg (ap, int));
|
||||||
}
|
}
|
||||||
|
|
||||||
static BOOL CALLBACK
|
static INT_PTR CALLBACK
|
||||||
AboutProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
AboutProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
switch (msg) {
|
switch (msg) {
|
||||||
|
@ -390,7 +390,7 @@ AboutProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static BOOL CALLBACK
|
static INT_PTR CALLBACK
|
||||||
DlgProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
DlgProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||||
{
|
{
|
||||||
switch (msg) {
|
switch (msg) {
|
||||||
|
|
Loading…
Reference in New Issue