reactos/rostests/apitests/shell32/shelltest.h
Amine Khaldi 76eee27b07 [SHELL32_APITEST]
* CLSID_MenuDeskBar is already part of the uuid lib.

svn path=/trunk/; revision=64118
2014-09-11 11:07:03 +00:00

65 lines
1.4 KiB
C++

#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <stdio.h>
#include <wine/test.h>
#include <winuser.h>
#include <winreg.h>
#include <commctrl.h>
#include <shellapi.h>
#include <shlobj.h>
#include <shlwapi.h>
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <string.h>
#include <tchar.h>
#include <initguid.h>
#define test_S_OK(hres, message) ok(hres == S_OK, "%s (0x%lx instead of S_OK)\n",message, hResult);
#define test_HRES(hres, hresExpected, message) ok(hres == hresExpected, "%s (0x%lx instead of 0x%lx)\n",message, hResult,hresExpected);
DEFINE_GUID(CLSID_MenuBandSite, 0xE13EF4E4, 0xD2F2, 0x11D0, 0x98, 0x16, 0x00, 0xC0, 0x4F, 0xD9, 0x19, 0x72);
template<typename Interface>
class CUnknownBase : public Interface
{
LONG m_lRef;
protected:
virtual const QITAB* GetQITab() = 0;
public:
CUnknownBase()
{
m_lRef = 0;
}
ULONG STDMETHODCALLTYPE AddRef ()
{
return InterlockedIncrement( &m_lRef );
}
ULONG STDMETHODCALLTYPE Release()
{
long newref = InterlockedDecrement( &m_lRef );
if (newref<=0) delete this;
return newref;
}
HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppv)
{
HRESULT hresult = QISearch(this, GetQITab(), riid, ppv);
if(SUCCEEDED(hresult)) AddRef();
return hresult;
}
virtual ~CUnknownBase() {}
};