mirror of
https://github.com/reactos/reactos.git
synced 2025-05-13 06:18:17 +00:00
[WIN32KNT_APITEST] 2 minor code improvements and a first fix (#5980)
- Update .rc filename; addendum to7ad21a4
(r70458). - Move one '#include "resource.h"' around to where it is needed. Addendum toe1b2e7a
(r29284) thenec5e0ea
(r48103). - Adjust all '#include <win32nt.h>'
This commit is contained in:
parent
1d8ce79080
commit
a5c3bb5bce
64 changed files with 63 additions and 63 deletions
|
@ -76,7 +76,7 @@ list(APPEND PCH_SKIP_SOURCE
|
||||||
add_executable(win32knt_apitest
|
add_executable(win32knt_apitest
|
||||||
${SOURCE}
|
${SOURCE}
|
||||||
${PCH_SKIP_SOURCE}
|
${PCH_SKIP_SOURCE}
|
||||||
w32knapi.rc)
|
win32knt.rc)
|
||||||
|
|
||||||
target_link_libraries(win32knt_apitest ${PSEH_LIB} gditools)
|
target_link_libraries(win32knt_apitest ${PSEH_LIB} gditools)
|
||||||
set_module_type(win32knt_apitest win32cui)
|
set_module_type(win32knt_apitest win32cui)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiDdCreateDirectDrawObject)
|
START_TEST(NtGdiDdCreateDirectDrawObject)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiDdDeleteDirectDrawObject)
|
START_TEST(NtGdiDdDeleteDirectDrawObject)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
#include <ddrawi.h>
|
#include <ddrawi.h>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiArcInternal)
|
START_TEST(NtGdiArcInternal)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiBitBlt)
|
START_TEST(NtGdiBitBlt)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiCombineRgn)
|
START_TEST(NtGdiCombineRgn)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
void Test_NtGdiCreateBitmap_Params(void)
|
void Test_NtGdiCreateBitmap_Params(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiCreateCompatibleBitmap)
|
START_TEST(NtGdiCreateCompatibleBitmap)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiCreateCompatibleDC)
|
START_TEST(NtGdiCreateCompatibleDC)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
HBITMAP
|
HBITMAP
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiDeleteObjectApp)
|
START_TEST(NtGdiDeleteObjectApp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
HPALETTE
|
HPALETTE
|
||||||
CreateTestPalette()
|
CreateTestPalette()
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiEngCreatePalette)
|
START_TEST(NtGdiEngCreatePalette)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiEnumFontOpen)
|
START_TEST(NtGdiEnumFontOpen)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiExcludeClipRect)
|
START_TEST(NtGdiExcludeClipRect)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiExtSelectClipRgn)
|
START_TEST(NtGdiExtSelectClipRgn)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
BOOL
|
BOOL
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
(NTAPI
|
(NTAPI
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiGetBitmapBits)
|
START_TEST(NtGdiGetBitmapBits)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
/* taken from gdi32, bitmap.c */
|
/* taken from gdi32, bitmap.c */
|
||||||
UINT
|
UINT
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiGetFontResourceInfoInternalW)
|
START_TEST(NtGdiGetFontResourceInfoInternalW)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiGetRandomRgn)
|
START_TEST(NtGdiGetRandomRgn)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiGetStockObject)
|
START_TEST(NtGdiGetStockObject)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiIntersectClipRect)
|
START_TEST(NtGdiIntersectClipRect)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiOffsetClipRgn)
|
START_TEST(NtGdiOffsetClipRgn)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
|
|
||||||
static
|
static
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
static HBRUSH hbrush;
|
static HBRUSH hbrush;
|
||||||
static HBITMAP hbitmap;
|
static HBITMAP hbitmap;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiSaveDC)
|
START_TEST(NtGdiSaveDC)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
Test_SelectDIBSection(void)
|
Test_SelectDIBSection(void)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiSelectBrush)
|
START_TEST(NtGdiSelectBrush)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiSelectFont)
|
START_TEST(NtGdiSelectFont)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiSelectPen)
|
START_TEST(NtGdiSelectPen)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS: Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
* PROGRAMMERS: Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiSetBitmapBits)
|
START_TEST(NtGdiSetBitmapBits)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
ReadBits(HDC hDC, PDWORD OutBits)
|
ReadBits(HDC hDC, PDWORD OutBits)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* COPYRIGHT: Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
* COPYRIGHT: Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtGdiTransformPoints)
|
START_TEST(NtGdiTransformPoints)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
Test_HwndRoutine_DeregisterShellHookWindow(HWND hWnd)
|
Test_HwndRoutine_DeregisterShellHookWindow(HWND hWnd)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
Test_HwndOptRoutine_SetProgmanWindow(void) /* 0x4a */
|
Test_HwndOptRoutine_SetProgmanWindow(void) /* 0x4a */
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
Test_HwndParamRoutine_SetWindowContextHelpId(HWND hWnd)
|
Test_HwndParamRoutine_SetWindowContextHelpId(HWND hWnd)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserCallHwndParamLock)
|
START_TEST(NtUserCallHwndParamLock)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
Test_NoParamRoutine_CreateMenu(void) /* 0 */
|
Test_NoParamRoutine_CreateMenu(void) /* 0 */
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
|
|
||||||
START_TEST(NtUserCountClipboardFormats)
|
START_TEST(NtUserCountClipboardFormats)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* PURPOSE: Test for NtUserCreateWindowEx
|
* PURPOSE: Test for NtUserCreateWindowEx
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
static
|
static
|
||||||
inline
|
inline
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
ULONG gMonitorCount = 0;
|
ULONG gMonitorCount = 0;
|
||||||
HDC ghdcMonitor = 0;
|
HDC ghdcMonitor = 0;
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserFindExistingCursorIcon)
|
START_TEST(NtUserFindExistingCursorIcon)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* COPYRIGHT: Copyright 2022 Thomas Faber (thomas.faber@reactos.org)
|
* COPYRIGHT: Copyright 2022 Thomas Faber (thomas.faber@reactos.org)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserGetAsyncKeyState)
|
START_TEST(NtUserGetAsyncKeyState)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserGetClassInfo)
|
START_TEST(NtUserGetClassInfo)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
#include "../resource.h"
|
||||||
|
|
||||||
START_TEST(NtUserGetIconInfo)
|
START_TEST(NtUserGetIconInfo)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* COPYRIGHT: Copyright 2022 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
* COPYRIGHT: Copyright 2022 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
#include <pseh/pseh2.h>
|
#include <pseh/pseh2.h>
|
||||||
|
|
||||||
typedef BOOL (APIENTRY *FN_NtUserGetKeyboardLayoutName)(PVOID);
|
typedef BOOL (APIENTRY *FN_NtUserGetKeyboardLayoutName)(PVOID);
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* COPYRIGHT: Copyright 2021-2022 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
* COPYRIGHT: Copyright 2021-2022 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
#include <pseh/pseh2.h>
|
#include <pseh/pseh2.h>
|
||||||
|
|
||||||
#define MAX_COUNT 8
|
#define MAX_COUNT 8
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserGetTitleBarInfo)
|
START_TEST(NtUserGetTitleBarInfo)
|
||||||
{
|
{
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* Copyright 2021 Hermes Belusca-Maito
|
* Copyright 2021 Hermes Belusca-Maito
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
#define NTOS_MODE_USER
|
#define NTOS_MODE_USER
|
||||||
#include <ndk/exfuncs.h>
|
#include <ndk/exfuncs.h>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserRedrawWindow)
|
START_TEST(NtUserRedrawWindow)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserScrollDC)
|
START_TEST(NtUserScrollDC)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
PALETTEENTRY
|
PALETTEENTRY
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserSetTimer)
|
START_TEST(NtUserSetTimer)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
#include <winreg.h>
|
#include <winreg.h>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
START_TEST(NtUserToUnicodeEx)
|
START_TEST(NtUserToUnicodeEx)
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* PROGRAMMERS:
|
* PROGRAMMERS:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <win32nt.h>
|
#include "../win32nt.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,6 @@
|
||||||
#include <ntgdihdl.h>
|
#include <ntgdihdl.h>
|
||||||
|
|
||||||
#include "../apitest.h"
|
#include "../apitest.h"
|
||||||
#include "resource.h"
|
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue