diff loader/dshow/allocator.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 9533c26c0806
children a8ea87c71d18
line wrap: on
line diff
--- a/loader/dshow/allocator.h	Sun Jan 20 17:03:35 2008 +0000
+++ b/loader/dshow/allocator.h	Sun Jan 20 17:16:39 2008 +0000
@@ -4,10 +4,10 @@
 #include "interfaces.h"
 #include "cmediasample.h"
 
-typedef struct _avm_list_t avm_list_t;
-typedef struct _MemAllocator MemAllocator;
+typedef struct avm_list_t avm_list_t;
+typedef struct MemAllocator MemAllocator;
 
-struct _MemAllocator
+struct MemAllocator
 {
     IMemAllocator_vt* vt;
     DECLARE_IUNKNOWN();