Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1998 - 1999
//
// File: unknown.h
//
//--------------------------------------------------------------------------
#ifndef _unknown_h
#define _unknown_h
// Global count of number of active objects
extern LONG g_cRefCount; #define GLOBAL_REFCOUNT (g_cRefCount)
// CUnknown
typedef struct { const IID* piid; // interface ID
LPVOID pvObject; // pointer to the object
} INTERFACES, * LPINTERFACES;
class CUnknown { protected: LONG m_cRefCount;
public: CUnknown();
STDMETHODIMP HandleQueryInterface(REFIID riid, LPVOID* ppvObject, LPINTERFACES aInterfaces, int cif); STDMETHODIMP_(ULONG) HandleAddRef(); STDMETHODIMP_(ULONG) HandleRelease(); protected: virtual ~CUnknown(); };
#endif
|