ReactOS 0.4.15-dev-7924-g5949c20
NtUserCallHwndParam.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS api tests
3 * LICENSE: GPL - See COPYING in the top level directory
4 * PURPOSE: Test for NtUserCallHwndParam
5 * PROGRAMMERS:
6 */
7
8#include "../win32nt.h"
9
10void
12{
15}
16
18{
19 HWND hWnd;
20
21 hWnd = CreateWindowA("BUTTON",
22 "Test",
24 0,
25 0,
26 50,
27 30,
28 NULL,
29 NULL,
31 0);
32 ASSERT(hWnd);
33
35
37}
HINSTANCE g_hInstance
Definition: MainWindow.cpp:18
void Test_HwndParamRoutine_SetWindowContextHelpId(HWND hWnd)
#define START_TEST(x)
Definition: atltest.h:75
HWND hWnd
Definition: settings.c:17
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
@ HWND_ROUTINE_GETWNDCONTEXTHLPID
Definition: ntuser.h:1614
DWORD NTAPI NtUserCallHwnd(HWND hWnd, DWORD Routine)
Definition: simplecall.c:711
DWORD NTAPI NtUserCallHwndParam(HWND hWnd, DWORD_PTR Param, DWORD Routine)
Definition: simplecall.c:767
#define ASSERT(a)
Definition: mode.c:44
#define TEST(x)
Definition: precomp.h:20
#define WS_VISIBLE
Definition: pedump.c:620
#define BS_PUSHBUTTON
Definition: pedump.c:651
#define _HWNDPARAM_ROUTINE_SETWNDCONTEXTHLPID
Definition: w32knapi.h:67
#define CreateWindowA(a, b, c, d, e, f, g, h, i, j, k)
Definition: winuser.h:4315
BOOL WINAPI DestroyWindow(_In_ HWND)