From 3bbe897e247d128cf63f1fad665fdfc086bab5ab Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 20 Jan 2008 17:16:39 +0000 Subject: 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 --- loader/dshow/cmediasample.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'loader/dshow/cmediasample.h') diff --git a/loader/dshow/cmediasample.h b/loader/dshow/cmediasample.h index 3d6e1218ca..e16fd613db 100644 --- a/loader/dshow/cmediasample.h +++ b/loader/dshow/cmediasample.h @@ -4,8 +4,8 @@ #include "interfaces.h" #include "guids.h" -typedef struct _CMediaSample CMediaSample; -struct _CMediaSample +typedef struct CMediaSample CMediaSample; +struct CMediaSample { IMediaSample_vt* vt; DECLARE_IUNKNOWN(); @@ -25,7 +25,7 @@ struct _CMediaSample void ( *ResetPointer) (CMediaSample* This); // FIXME replace with Set & 0 }; -CMediaSample* CMediaSampleCreate(IMemAllocator* allocator, int _size); +CMediaSample* CMediaSampleCreate(IMemAllocator* allocator, int size); // called from allocator void CMediaSample_Destroy(CMediaSample* This); -- cgit v1.2.3