mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
7ad21a4425
- Convert win32k native api test to actual wine style api-tests - Hack around a bit with the win32k dlls, some renaming, etc. - Delete old apitest stuff svn path=/trunk/; revision=70458
27 lines
596 B
C
27 lines
596 B
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for NtUserCallHwndOpt
|
|
* PROGRAMMERS:
|
|
*/
|
|
|
|
#include <win32nt.h>
|
|
|
|
void
|
|
Test_HwndOptRoutine_SetProgmanWindow(void) /* 0x4a */
|
|
{
|
|
// NtUserCallHwndOpt(hWnd, HWNDOPT_ROUTINE_SETPROGMANWINDOW);
|
|
}
|
|
|
|
void
|
|
Test_HwndOptRoutine_SetTaskmanWindow (void) /* 0x4b */
|
|
{
|
|
// NtUserCallHwndOpt(hWnd, HWNDOPT_ROUTINE_SETTASKMANWINDOW);
|
|
}
|
|
|
|
START_TEST(NtUserCallHwndOpt)
|
|
{
|
|
|
|
Test_HwndOptRoutine_SetProgmanWindow(pti); /* 0x4a */
|
|
Test_HwndOptRoutine_SetTaskmanWindow (pti); /* 0x4b */
|
|
}
|