summaryrefslogtreecommitdiffstats
path: root/loader/com.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 17:16:39 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 17:16:39 +0000
commit3bbe897e247d128cf63f1fad665fdfc086bab5ab (patch)
tree567f6ff88d6dfa186a9184676793512b85743c22 /loader/com.h
parent8fb418635ee3511971ab3bc923b2f95228669906 (diff)
downloadmpv-3bbe897e247d128cf63f1fad665fdfc086bab5ab.tar.bz2
mpv-3bbe897e247d128cf63f1fad665fdfc086bab5ab.tar.xz
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
capital letter are reserved for the system, those starting with _ are reserved at the file level. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25822 b3059339-0415-0410-9bf9-f77b7e298cf2
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