ReactOS 0.4.16-dev-942-g91fadeb
SHIsBadInterfacePtr.cpp File Reference
#include "shelltest.h"
#include <undocshell.h>
Include dependency graph for SHIsBadInterfacePtr.cpp:

Go to the source code of this file.

Typedefs

typedef BOOL(WINAPIFN_SHIsBadInterfacePtr) (LPCVOID, UINT_PTR)
 

Functions

static HRESULT STDMETHODCALLTYPE dummy_QueryInterface (REFIID riid, LPVOID *ppvObj)
 
static ULONG STDMETHODCALLTYPE dummy_AddRef ()
 
static ULONG STDMETHODCALLTYPE dummy_Release ()
 
 START_TEST (SHIsBadInterfacePtr)
 

Typedef Documentation

◆ FN_SHIsBadInterfacePtr

typedef BOOL(WINAPI * FN_SHIsBadInterfacePtr) (LPCVOID, UINT_PTR)

Definition at line 11 of file SHIsBadInterfacePtr.cpp.

Function Documentation

◆ dummy_AddRef()

static ULONG STDMETHODCALLTYPE dummy_AddRef ( )
static

Definition at line 14 of file SHIsBadInterfacePtr.cpp.

14{ return S_OK; }
#define S_OK
Definition: intsafe.h:52

Referenced by START_TEST().

◆ dummy_QueryInterface()

static HRESULT STDMETHODCALLTYPE dummy_QueryInterface ( REFIID  riid,
LPVOID ppvObj 
)
static

Definition at line 13 of file SHIsBadInterfacePtr.cpp.

13{ return S_OK; }

Referenced by START_TEST().

◆ dummy_Release()

static ULONG STDMETHODCALLTYPE dummy_Release ( )
static

Definition at line 15 of file SHIsBadInterfacePtr.cpp.

15{ return S_OK; }

Referenced by START_TEST().

◆ START_TEST()

START_TEST ( SHIsBadInterfacePtr  )

Definition at line 17 of file SHIsBadInterfacePtr.cpp.

18{
19 struct CUnknownVtbl
20 {
24 };
25 struct CUnknown { CUnknownVtbl *lpVtbl; };
26
27 BOOL ret;
30
32 {
33 skip("There is no SHIsBadInterfacePtr\n");
34 return;
35 }
36
38 ok_int(ret, TRUE);
39
40 CUnknown unk1 = { NULL };
42 ok_int(ret, TRUE);
43
44 CUnknownVtbl vtbl1 = { dummy_QueryInterface, dummy_AddRef, NULL };
45 CUnknown unk2 = { &vtbl1 };
46 ret = SHIsBadInterfacePtr(&unk2, 1);
47 ok_int(ret, TRUE);
48
49 CUnknownVtbl vtbl2 = { dummy_QueryInterface, dummy_AddRef, dummy_Release };
50 CUnknown unk3 = { &vtbl2 };
51 ret = SHIsBadInterfacePtr(&unk3, 1);
53}
BOOL(WINAPI * FN_SHIsBadInterfacePtr)(LPCVOID, UINT_PTR)
static ULONG STDMETHODCALLTYPE dummy_Release()
static HRESULT STDMETHODCALLTYPE dummy_QueryInterface(REFIID riid, LPVOID *ppvObj)
static ULONG STDMETHODCALLTYPE dummy_AddRef()
#define skip(...)
Definition: atltest.h:64
#define ok_int(expression, result)
Definition: atltest.h:134
#define STDMETHODCALLTYPE
Definition: bdasup.h:9
_In_ BOOLEAN Release
Definition: cdrom.h:920
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define GetProcAddress(x, y)
Definition: compat.h:753
HMODULE WINAPI GetModuleHandleW(LPCWSTR lpModuleName)
Definition: loader.c:838
EXTERN_C BOOL WINAPI SHIsBadInterfacePtr(_In_ LPCVOID pv, _In_ UINT_PTR ucb)
Definition: utils.cpp:1820
unsigned int BOOL
Definition: ntddk_ex.h:94
REFIID riid
Definition: atlbase.h:39
static HRESULT QueryInterface(REFIID, void **)
Definition: events.c:2587
static ULONG WINAPI AddRef(IStream *iface)
Definition: clist.c:90
static DWORD unk1
Definition: cursoricon.c:1638
#define L(x)
Definition: ntvdm.h:50
#define REFIID
Definition: guiddef.h:118
uint32_t ULONG
Definition: typedefs.h:59
int ret
#define HRESULT
Definition: msvc.h:7
#define MAKEINTRESOURCEA(i)
Definition: winuser.h:581