ReactOS 0.4.15-dev-7953-g1f49173
NtUserCallNoParam.c File Reference
#include "../win32nt.h"
Include dependency graph for NtUserCallNoParam.c:

Go to the source code of this file.

Functions

void Test_NoParamRoutine_CreateMenu (void)
 
void Test_NoParamRoutine_CreatePopupMenu (void)
 
void Test_NoParamRoutine_DisableProcessWindowsGhosting (void)
 
void Test_NoParamRoutine_ClearWakeMask (void)
 
void Test_NoParamRoutine_AllowForegroundActivation (void)
 
void Test_NoParamRoutine_DestroyCaret (void)
 
void Test_NoParamRoutine_LoadUserApiHook (void)
 
 START_TEST (NtUserCallNoParam)
 

Function Documentation

◆ START_TEST()

START_TEST ( NtUserCallNoParam  )

Definition at line 67 of file NtUserCallNoParam.c.

68{
72
73 return APISTATUS_NORMAL;
74}
void Test_NoParamRoutine_LoadUserApiHook(void)
void Test_NoParamRoutine_CreatePopupMenu(void)
void Test_NoParamRoutine_CreateMenu(void)

◆ Test_NoParamRoutine_AllowForegroundActivation()

void Test_NoParamRoutine_AllowForegroundActivation ( void  )

Definition at line 45 of file NtUserCallNoParam.c.

46{
47
48}

◆ Test_NoParamRoutine_ClearWakeMask()

void Test_NoParamRoutine_ClearWakeMask ( void  )

Definition at line 39 of file NtUserCallNoParam.c.

40{
41
42}

◆ Test_NoParamRoutine_CreateMenu()

void Test_NoParamRoutine_CreateMenu ( void  )

Definition at line 11 of file NtUserCallNoParam.c.

12{
13 HMENU hMenu;
14
16 TEST(IsMenu(hMenu) == TRUE);
17 DestroyMenu(hMenu);
18
19}
#define TRUE
Definition: types.h:120
DWORD_PTR NTAPI NtUserCallNoParam(DWORD Routine)
Definition: simplecall.c:59
#define TEST(x)
Definition: precomp.h:20
static const CLSID *static CLSID *static const GUID VARIANT VARIANT *static IServiceProvider DWORD *static HMENU
Definition: ordinal.c:63
#define _NOPARAM_ROUTINE_CREATEMENU
Definition: w32knapi.h:59
BOOL WINAPI IsMenu(_In_ HMENU)
BOOL WINAPI DestroyMenu(_In_ HMENU)

Referenced by START_TEST().

◆ Test_NoParamRoutine_CreatePopupMenu()

void Test_NoParamRoutine_CreatePopupMenu ( void  )

Definition at line 22 of file NtUserCallNoParam.c.

23{
24 HMENU hMenu;
25
27 TEST(IsMenu(hMenu) == TRUE);
28 DestroyMenu(hMenu);
29
30}
#define _NOPARAM_ROUTINE_CREATEMENUPOPUP
Definition: w32knapi.h:60

Referenced by START_TEST().

◆ Test_NoParamRoutine_DestroyCaret()

void Test_NoParamRoutine_DestroyCaret ( void  )

Definition at line 51 of file NtUserCallNoParam.c.

52{
53
54}

◆ Test_NoParamRoutine_DisableProcessWindowsGhosting()

void Test_NoParamRoutine_DisableProcessWindowsGhosting ( void  )

Definition at line 33 of file NtUserCallNoParam.c.

34{
35
36}

◆ Test_NoParamRoutine_LoadUserApiHook()

void Test_NoParamRoutine_LoadUserApiHook ( void  )

Definition at line 57 of file NtUserCallNoParam.c.

58{
59 //DWORD dwRet;
61
62// TEST(dwRet != 0);
63
64}
#define _NOPARAM_ROUTINE_LOADUSERAPIHOOK
Definition: w32knapi.h:61

Referenced by START_TEST().