mirror of
https://github.com/mpv-player/mpv
synced 2024-12-18 21:06:00 +00:00
c040ef5660
Fixes crash when trying to load vp7vfw.dll in vfw2menc. Patch by Gianluigi Tiesi mplayer___netfarm.it http://lists.mplayerhq.hu/pipermail/mplayer-dev-eng/2007-September/054136.html git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24798 b3059339-0415-0410-9bf9-f77b7e298cf2
20 lines
506 B
C
20 lines
506 B
C
#ifndef WINE_OBJBASE_H
|
|
#define WINE_OBJBASE_H
|
|
|
|
#ifndef STDCALL
|
|
#define STDCALL __attribute__((__stdcall__))
|
|
#endif
|
|
|
|
/* from objbase.h needed for ve_vfw.c */
|
|
typedef enum tagCOINIT {
|
|
COINIT_APARTMENTTHREADED = 0x2,
|
|
COINIT_MULTITHREADED = 0x0,
|
|
COINIT_DISABLE_OLE1DDE = 0x4,
|
|
COINIT_SPEED_OVER_MEMORY = 0x8
|
|
} COINIT;
|
|
|
|
HRESULT STDCALL CoInitialize(LPVOID pvReserved);
|
|
HRESULT STDCALL CoInitializeEx(LPVOID pvReserved, DWORD dwCoinit);
|
|
void STDCALL CoUninitialize(void);
|
|
#endif
|