Don't prepend '--' to the command line when starting a Windows binary.
[wine/multimedia.git] / dlls / quartz / memalloc.h
blob6cecfd1f30bffb9dac13425858e5ed15b308b28e
1 /*
2 * Copyright (C) Hidenori TAKESHIMA
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef WINE_DSHOW_MEMALLOC_H
20 #define WINE_DSHOW_MEMALLOC_H
23 implements CLSID_MemoryAllocator.
25 - At least, the following interfaces should be implemented:
27 IUnknown
28 + IMemAllocator
32 #include "iunk.h"
33 #include "sample.h"
35 typedef struct MA_IMemAllocatorImpl
37 ICOM_VFIELD(IMemAllocator);
38 } MA_IMemAllocatorImpl;
40 typedef struct CMemoryAllocator
42 QUARTZ_IUnkImpl unk;
43 MA_IMemAllocatorImpl memalloc;
45 /* IMemAllocator fields. */
46 CRITICAL_SECTION csMem;
47 ALLOCATOR_PROPERTIES prop;
48 HANDLE hEventSample;
49 BYTE* pData;
50 CMemMediaSample** ppSamples;
51 } CMemoryAllocator;
53 #define CMemoryAllocator_THIS(iface,member) CMemoryAllocator* This = ((CMemoryAllocator*)(((char*)iface)-offsetof(CMemoryAllocator,member)))
55 HRESULT QUARTZ_CreateMemoryAllocator(IUnknown* punkOuter,void** ppobj);
57 HRESULT CMemoryAllocator_InitIMemAllocator( CMemoryAllocator* pma );
58 void CMemoryAllocator_UninitIMemAllocator( CMemoryAllocator* pma );
61 #endif /* WINE_DSHOW_MEMALLOC_H */