mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
12 lines
233 B
C
12 lines
233 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <winerror.h>
|
|
#include <objbase.h>
|
|
|
|
struct IUnknown {
|
|
virtual HRESULT QueryInterface (REFIID riid, void **ppvObject) = 0;
|
|
virtual ULONG AddRef () = 0;
|
|
virtual ULONG Release () = 0;
|
|
};
|