This commit is contained in:
Oleg Dubinskiy 2025-03-30 18:37:00 +02:00 committed by GitHub
commit 2bac0f7fff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 149 additions and 9 deletions

View file

@ -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)

View 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)

View 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;
}

View file

@ -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);

View file

@ -432,15 +432,6 @@ WORD WINAPI InitializeWin32EntryTable(UCHAR* EntryTablePlus0x1000)
return FALSE;
}
/*
* @unimplemented
*/
BOOL WINAPI IsServerSideWindow(HWND wnd)
{
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented
*/

View file

@ -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
*/