summaryrefslogtreecommitdiffstats
path: root/loader/com.h
diff options
context:
space:
mode:
Diffstat (limited to 'loader/com.h')
-rw-r--r--loader/com.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/loader/com.h b/loader/com.h
index a902632549..84a667f0fd 100644
--- a/loader/com.h
+++ b/loader/com.h
@@ -46,10 +46,11 @@ struct IUnknown_vt
long STDCALL (*AddRef)(struct IUnknown* _this) ;
long STDCALL (*Release)(struct IUnknown* _this) ;
} ;
-struct IUnknown
+
+typedef struct IUnknown
{
struct IUnknown_vt* vt;
-};
+} IUnknown;
struct IClassFactory_vt
{