mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
0fa39dfff7
svn path=/trunk/; revision=60598
65 lines
1.5 KiB
C++
65 lines
1.5 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_MenuDeskBar, 0xECD4FC4F, 0x521C, 0x11D0, 0xB7, 0x92, 0x00, 0xA0, 0xC9, 0x03, 0x12, 0xE1);
|
|
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() {}
|
|
};
|
|
|