Mercurial > mplayer.hg
view loader/wine/objbase.h @ 28921:62f0032e736a
Get rid of pointless preprocessor condition indirection and use ARCH_X86
directly instead of CAN_COMPILE_X86_ASM.
author | diego |
---|---|
date | Sun, 15 Mar 2009 10:01:02 +0000 |
parents | a8ea87c71d18 |
children | 837cd9762b4e |
line wrap: on
line source
#ifndef MPLAYER_OBJBASE_H #define MPLAYER_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 /* MPLAYER_OBJBASE_H */