diff loader/dshow/outputpin.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 49f01f8fbd60
children a8ea87c71d18
line wrap: on
line diff
--- a/loader/dshow/outputpin.h	Sun Jan 20 17:03:35 2008 +0000
+++ b/loader/dshow/outputpin.h	Sun Jan 20 17:16:39 2008 +0000
@@ -5,8 +5,8 @@
 
 #include "allocator.h"
 
-typedef struct _COutputMemPin COutputMemPin;
-typedef struct _COutputPin COutputPin;
+typedef struct COutputMemPin COutputMemPin;
+typedef struct COutputPin COutputPin;
 
 /**
  Callback routine for copying samples from pin into filter
@@ -15,7 +15,7 @@
 */
 typedef  HRESULT STDCALL (*SAMPLEPROC)(void* pUserData,IMediaSample*sample);
 
-struct _COutputPin
+struct COutputPin
 {
     IPin_vt* vt;
     DECLARE_IUNKNOWN();