summaryrefslogtreecommitdiffstats
path: root/loader/com.h
diff options
context:
space:
mode:
Diffstat (limited to 'loader/com.h')
-rw-r--r--loader/com.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/loader/com.h b/loader/com.h
index 316538479a..9cf2ea15c3 100644
--- a/loader/com.h
+++ b/loader/com.h
@@ -51,9 +51,9 @@ struct IUnknown;
struct IClassFactory;
struct IUnknown_vt
{
- long STDCALL (*QueryInterface)(struct IUnknown* _this, const GUID* iid, void** ppv);
- long STDCALL (*AddRef)(struct IUnknown* _this) ;
- long STDCALL (*Release)(struct IUnknown* _this) ;
+ long STDCALL (*QueryInterface)(struct IUnknown* this, const GUID* iid, void** ppv);
+ long STDCALL (*AddRef)(struct IUnknown* this) ;
+ long STDCALL (*Release)(struct IUnknown* this) ;
} ;
typedef struct IUnknown
@@ -63,10 +63,10 @@ typedef struct IUnknown
struct IClassFactory_vt
{
- long STDCALL (*QueryInterface)(struct IUnknown* _this, const GUID* iid, void** ppv);
- long STDCALL (*AddRef)(struct IUnknown* _this) ;
- long STDCALL (*Release)(struct IUnknown* _this) ;
- long STDCALL (*CreateInstance)(struct IClassFactory* _this, struct IUnknown* pUnkOuter, const GUID* riid, void** ppvObject);
+ long STDCALL (*QueryInterface)(struct IUnknown* this, const GUID* iid, void** ppv);
+ long STDCALL (*AddRef)(struct IUnknown* this) ;
+ long STDCALL (*Release)(struct IUnknown* this) ;
+ long STDCALL (*CreateInstance)(struct IClassFactory* this, struct IUnknown* pUnkOuter, const GUID* riid, void** ppvObject);
};
struct IClassFactory