diff loader/dshow/cmediasample.h @ 25794:2c8cdb9123b8

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.
author diego
date Sun, 20 Jan 2008 17:16:39 +0000
parents e3bbf44dbab2
children a8ea87c71d18
line wrap: on
line diff
--- a/loader/dshow/cmediasample.h	Sun Jan 20 17:03:35 2008 +0000
+++ b/loader/dshow/cmediasample.h	Sun Jan 20 17:16:39 2008 +0000
@@ -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 @@
     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);