diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-23 15:54:42 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-12-23 15:54:42 +0000 |
commit | 9b2f0a778eaa65fc7cfe197d318b4faed40b1d10 (patch) | |
tree | 2e360b243be07e5500647fce4d7e0327467f09e3 /src/libw32dll/DirectShow/allocator.h | |
parent | d15276928e22160cdb606a0cf65ad48f1268f072 (diff) | |
download | xine-lib-9b2f0a778eaa65fc7cfe197d318b4faed40b1d10.tar.gz xine-lib-9b2f0a778eaa65fc7cfe197d318b4faed40b1d10.tar.bz2 |
wmv9 support
CVS patchset: 3651
CVS date: 2002/12/23 15:54:42
Diffstat (limited to 'src/libw32dll/DirectShow/allocator.h')
-rw-r--r-- | src/libw32dll/DirectShow/allocator.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/libw32dll/DirectShow/allocator.h b/src/libw32dll/DirectShow/allocator.h index 855637063..ef1efd737 100644 --- a/src/libw32dll/DirectShow/allocator.h +++ b/src/libw32dll/DirectShow/allocator.h @@ -4,14 +4,9 @@ #include "interfaces.h" #include "cmediasample.h" -typedef struct avm_list_t -{ - struct avm_list_t* next; - struct avm_list_t* prev; - void* member; -} avm_list_t; - +typedef struct _avm_list_t avm_list_t; typedef struct _MemAllocator MemAllocator; + struct _MemAllocator { IMemAllocator_vt* vt; @@ -27,6 +22,6 @@ struct _MemAllocator void ( *ResetPointer )(MemAllocator* This); }; -MemAllocator* MemAllocatorCreate(); +MemAllocator* MemAllocatorCreate(void); #endif /* DS_ALLOCATOR_H */ |