comparison 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
comparison
equal deleted inserted replaced
25793:ac1a2c121d3a 25794:2c8cdb9123b8
2 #define DS_ALLOCATOR_H 2 #define DS_ALLOCATOR_H
3 3
4 #include "interfaces.h" 4 #include "interfaces.h"
5 #include "cmediasample.h" 5 #include "cmediasample.h"
6 6
7 typedef struct _avm_list_t avm_list_t; 7 typedef struct avm_list_t avm_list_t;
8 typedef struct _MemAllocator MemAllocator; 8 typedef struct MemAllocator MemAllocator;
9 9
10 struct _MemAllocator 10 struct MemAllocator
11 { 11 {
12 IMemAllocator_vt* vt; 12 IMemAllocator_vt* vt;
13 DECLARE_IUNKNOWN(); 13 DECLARE_IUNKNOWN();
14 ALLOCATOR_PROPERTIES props; 14 ALLOCATOR_PROPERTIES props;
15 avm_list_t* used_list; 15 avm_list_t* used_list;