mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
Merge 7909f7d776
into c5325f5016
This commit is contained in:
commit
2bac0f7fff
6 changed files with 149 additions and 9 deletions
|
@ -2,5 +2,6 @@ add_subdirectory(biditext)
|
|||
add_subdirectory(messagebox)
|
||||
add_subdirectory(paintdesktop)
|
||||
add_subdirectory(psmtest)
|
||||
add_subdirectory(serverside)
|
||||
add_subdirectory(sysicon)
|
||||
add_subdirectory(winstation)
|
||||
|
|
9
modules/rostests/win32/user32/serverside/CMakeLists.txt
Normal file
9
modules/rostests/win32/user32/serverside/CMakeLists.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
list(APPEND SOURCE
|
||||
serverside.c)
|
||||
|
||||
add_executable(serverside ${SOURCE})
|
||||
target_link_libraries(serverside ${PSEH_LIB})
|
||||
set_module_type(serverside win32gui UNICODE)
|
||||
add_importlibs(serverside gdi32 user32 msvcrt kernel32 ntdll)
|
||||
add_rostests_file(TARGET serverside SUBDIR suppl)
|
107
modules/rostests/win32/user32/serverside/serverside.c
Normal file
107
modules/rostests/win32/user32/serverside/serverside.c
Normal file
|
@ -0,0 +1,107 @@
|
|||
/*
|
||||
* PROJECT: ReactOS test suite
|
||||
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||||
* PURPOSE: Test for existense of the kernel mode wndproc in the window
|
||||
* COPYRIGHT: Copyright 2024 Oleg Dubinskiy (oleg.dubinskiy@reactos.org)
|
||||
*/
|
||||
|
||||
/* This testapp tests behaviour of IsServerSideWindow() function in user32. */
|
||||
|
||||
#define _WINE
|
||||
|
||||
#include <windows.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <debug.h>
|
||||
|
||||
WCHAR WndClass[] = L"window class";
|
||||
|
||||
LRESULT CALLBACK WndProc(HWND hWnd,
|
||||
UINT msg,
|
||||
WPARAM wParam,
|
||||
LPARAM lParam)
|
||||
{
|
||||
switch (msg)
|
||||
{
|
||||
case WM_PAINT:
|
||||
return 0;
|
||||
|
||||
case WM_DESTROY:
|
||||
PostQuitMessage(0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return DefWindowProcW(hWnd, msg, wParam, lParam);
|
||||
}
|
||||
|
||||
int APIENTRY wWinMain(HINSTANCE hInst,
|
||||
HINSTANCE hPrevInstance,
|
||||
LPWSTR lpCmdLine,
|
||||
int nCmdShow)
|
||||
{
|
||||
HWND hWnd1a, hWnd1b;
|
||||
WNDCLASSEXW wcx;
|
||||
UINT result;
|
||||
BOOL ret;
|
||||
|
||||
memset(&wcx, 0, sizeof(wcx));
|
||||
wcx.cbSize = sizeof(wcx);
|
||||
wcx.lpfnWndProc = (WNDPROC)WndProc;
|
||||
wcx.hInstance = hInst;
|
||||
wcx.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
|
||||
wcx.lpszClassName = WndClass;
|
||||
|
||||
if (!(result = RegisterClassExW(&wcx)))
|
||||
return 1;
|
||||
|
||||
/* 1. Window with a valid wndproc */
|
||||
hWnd1a = CreateWindowExW(0,
|
||||
WndClass,
|
||||
NULL,
|
||||
WS_CAPTION | WS_SYSMENU,
|
||||
CW_USEDEFAULT, CW_USEDEFAULT,
|
||||
400, 100,
|
||||
NULL, 0,
|
||||
hInst, NULL);
|
||||
if (!hWnd1a)
|
||||
return 1;
|
||||
|
||||
ShowWindow(hWnd1a, SW_SHOW);
|
||||
UpdateWindow(hWnd1a);
|
||||
|
||||
ret = IsServerSideWindow(hWnd1a);
|
||||
if (ret)
|
||||
DPRINT("OK: the window %p has a valid kernel mode wndproc\n", hWnd1a);
|
||||
else
|
||||
DPRINT("FAIL: the window %p is not valid or has no valid kernel mode wndproc\n", hWnd1a);
|
||||
|
||||
// TODO: this seems to be not a correct test condition.
|
||||
// Find a valid condition to test a kernel mode wmdproc existence correctly!
|
||||
|
||||
//wcx.lpfnWndProc = NULL;
|
||||
|
||||
/* 2. Window without a valid wndproc */
|
||||
hWnd1b = CreateWindowExW(0,
|
||||
WndClass,
|
||||
NULL,
|
||||
WS_CAPTION | WS_SYSMENU,
|
||||
CW_USEDEFAULT, CW_USEDEFAULT,
|
||||
400, 100,
|
||||
NULL, 0,
|
||||
hInst, NULL);
|
||||
|
||||
if (!hWnd1b)
|
||||
return 1;
|
||||
|
||||
ShowWindow(hWnd1b, SW_SHOW);
|
||||
UpdateWindow(hWnd1b);
|
||||
|
||||
ret = IsServerSideWindow(hWnd1b);
|
||||
if (ret)
|
||||
DPRINT("FAIL: the window %p has a valid kernel mode wndproc when it shouldn't\n", hWnd1b);
|
||||
else
|
||||
DPRINT("OK: the window %p has no valid kernel mode wndproc\n", hWnd1b);
|
||||
|
||||
UnregisterClassW(WndClass, hInst);
|
||||
return 0;
|
||||
}
|
|
@ -199,6 +199,7 @@ LONG WINAPI CsrBroadcastSystemMessageExW(DWORD dwflags,
|
|||
LPARAM lParam,
|
||||
PBSMINFO pBSMInfo);
|
||||
BOOL WINAPI CliImmSetHotKey(DWORD dwID, UINT uModifiers, UINT uVirtualKey, HKL hKl);
|
||||
BOOL WINAPI IsServerSideWindow(HWND);
|
||||
HWND WINAPI SetTaskmanWindow(HWND);
|
||||
HWND WINAPI GetTaskmanWindow(VOID);
|
||||
HWND WINAPI GetProgmanWindow(VOID);
|
||||
|
|
|
@ -432,15 +432,6 @@ WORD WINAPI InitializeWin32EntryTable(UCHAR* EntryTablePlus0x1000)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL WINAPI IsServerSideWindow(HWND wnd)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
|
@ -1522,6 +1522,37 @@ IsIconic(HWND hWnd)
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief
|
||||
* IsServerSideWindow
|
||||
*
|
||||
* Checks whether a window has a window procedure that resides in kernel mode.
|
||||
*
|
||||
* @param[in] hWnd
|
||||
* A handle to the window to be checked.
|
||||
*
|
||||
* @return
|
||||
* TRUE if the window has a window procedure that resides in kernel mode,
|
||||
* FALSE otherwise.
|
||||
*
|
||||
* @remarks
|
||||
* Undocumented, see http://undoc.airesoft.co.uk/user32.dll/IsServerSideWindow.php
|
||||
* (unofficial documentation).
|
||||
*/
|
||||
BOOL
|
||||
WINAPI
|
||||
IsServerSideWindow(
|
||||
_In_ HWND hWnd)
|
||||
{
|
||||
PWND Wnd = ValidateHwnd(hWnd);
|
||||
|
||||
if (Wnd != NULL)
|
||||
return (Wnd->state & WNDS_SERVERSIDEWINDOWPROC) != 0;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue