diff loader/dmo/DMO_VideoDecoder.c @ 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 dfc8e126ac86
children e5bce92eb572
line wrap: on
line diff
--- a/loader/dmo/DMO_VideoDecoder.c	Sun Jan 20 17:03:35 2008 +0000
+++ b/loader/dmo/DMO_VideoDecoder.c	Sun Jan 20 17:16:39 2008 +0000
@@ -17,7 +17,7 @@
 
 #include "DMO_VideoDecoder.h"
 
-struct _DMO_VideoDecoder
+struct DMO_VideoDecoder
 {
     IVideoDecoder iv;
     
@@ -54,9 +54,9 @@
 
 //int DMO_VideoDecoder_GetCapabilities(DMO_VideoDecoder *this){return this->m_Caps;}
 
-typedef struct _ct ct;
+typedef struct ct ct;
 
-struct _ct {
+struct ct {
     fourcc_t fcc;
     unsigned int bits;
     const GUID* subtype;