comparison loader/dshow/allocator.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 254733f57707
children b70f5ac9c001
comparison
equal deleted inserted replaced
25793:ac1a2c121d3a 25794:2c8cdb9123b8
11 #include <stdio.h> 11 #include <stdio.h>
12 #include <stdlib.h> 12 #include <stdlib.h>
13 13
14 static int AllocatorKeeper = 0; 14 static int AllocatorKeeper = 0;
15 15
16 struct _avm_list_t 16 struct avm_list_t
17 { 17 {
18 struct _avm_list_t* next; 18 struct avm_list_t* next;
19 struct _avm_list_t* prev; 19 struct avm_list_t* prev;
20 void* member; 20 void* member;
21 }; 21 };
22 22
23 static inline int avm_list_size(avm_list_t* head) 23 static inline int avm_list_size(avm_list_t* head)
24 { 24 {