1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/prod_include/unknwn.h
2023-02-13 13:26:48 -03:00

12 lines
232 B
C++

#pragma once
#include <windows.h>
#include <winerror.h>
#include <objbase.h>
class IUnknown {
virtual HRESULT QueryInterface (REFIID riid, void **ppvObject) = 0;
virtual ULONG AddRef () = 0;
virtual ULONG Release () = 0;
};