Mercurial > mplayer.hg
view loader/wine/objbase.h @ 25220:c9e9ac2008c2
Mark the vo_functions_t definitions as const where possible.
This is not possible for xover and anything supporting vidix
due to horrible hacks.
author | reimar |
---|---|
date | Sun, 02 Dec 2007 14:39:15 +0000 |
parents | 9e723abe8646 |
children | 3baf6a2283da |
line wrap: on
line source
#ifndef WINE_OBJBASE_H #define WINE_OBJBASE_H #ifndef STDCALL #define STDCALL __attribute__((__stdcall__)) #endif /* WINE_OBJBASE_H */ /* 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