ReactOS 0.4.15-dev-7907-g95bf896
NtGdiFlushUserBatch.c File Reference
#include "../win32nt.h"
Include dependency graph for NtGdiFlushUserBatch.c:

Go to the source code of this file.

Functions

 NTSTATUS (NTAPI *pNtGdiFlushUserBatch)(VOID)
 
 START_TEST (NtGdiFlushUserBatch)
 

Function Documentation

◆ NTSTATUS()

NTSTATUS ( NTAPI pNtGdiFlushUserBatch)

◆ START_TEST()

START_TEST ( NtGdiFlushUserBatch  )

Definition at line 14 of file NtGdiFlushUserBatch.c.

15{
16 PVOID pRet;
17 PTEB pTeb;
18
19 pNtGdiFlushUserBatch = (PVOID)GetProcAddress(g_hModule, "NtGdiFlushUserBatch");
20 if (pNtGdiFlushUserBatch == NULL)
21 return APISTATUS_NOT_FOUND;
22
23 pTeb = NtCurrentTeb();
24 ok(pTeb != NULL, "pTeb was NULL.\n");
25
26 pRet = (PVOID)pNtGdiFlushUserBatch();
27
28 ok(pRet != NULL, "pRet was NULL.\n");
29 ok_ptr(pRet, &pTeb->RealClientId);
30
31 ok_long(pTeb->GdiBatchCount, 0);
32 ok_long(pTeb->GdiTebBatch.Offset, 0);
33 ok_ptr(pTeb->GdiTebBatch.HDC, NULL);
34
35 /* Set up some bullshit */
36 pTeb->InDbgPrint = 1;
37 pTeb->GdiBatchCount = 12;
38 pTeb->GdiTebBatch.Offset = 21;
39 pTeb->GdiTebBatch.HDC = (HDC)123;
40
41 pRet = (PVOID)pNtGdiFlushUserBatch();
42 ok_ptr(pRet, &pTeb->RealClientId);
43
44 ok_int(pTeb->InDbgPrint, 0);
45 ok_long(pTeb->GdiBatchCount, 12);
46 ok_long(pTeb->GdiTebBatch.Offset, 0);
47 ok_ptr(pTeb->GdiTebBatch.HDC, NULL);
48}
HMODULE g_hModule
Definition: ACPPage.cpp:12
#define ok_long(expression, result)
Definition: atltest.h:133
#define ok(value,...)
Definition: atltest.h:57
#define ok_int(expression, result)
Definition: atltest.h:134
#define ok_ptr(expression, result)
Definition: atltest.h:108
#define NULL
Definition: types.h:112
#define GetProcAddress(x, y)
Definition: compat.h:753
#define NtCurrentTeb
static HDC
Definition: imagelist.c:92
HANDLE HDC
Definition: compat.h:832
ULONG Offset
Definition: compat.h:831
Definition: compat.h:836
GDI_TEB_BATCH GdiTebBatch
Definition: compat.h:857
ULONG GdiBatchCount
Definition: compat.h:887
CLIENT_ID RealClientId
Definition: compat.h:861
void * PVOID
Definition: typedefs.h:50