Skip to content

Instantly share code, notes, and snippets.

@matthiaskaiser
Last active June 13, 2018 09:21
Show Gist options
  • Save matthiaskaiser/5e88fda2f625b9c7f4ff129cdf5ea030 to your computer and use it in GitHub Desktop.
Save matthiaskaiser/5e88fda2f625b9c7f4ff129cdf5ea030 to your computer and use it in GitHub Desktop.
iunknown
class IUnknown
{
public:
virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void **ppvObject) = 0;
virtual ULONG STDMETHODCALLTYPE AddRef( void) = 0;
virtual ULONG STDMETHODCALLTYPE Release( void) = 0;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment