blob: 902bbaa32e145f3f95992f5fceda52924d4620fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef MPLAYER_OBJBASE_H
#define MPLAYER_OBJBASE_H
#include "windef.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 /* MPLAYER_OBJBASE_H */
|