view loader/wine/objbase.h @ 30415:3f9c8b7320a2

Fix randomness of the swscale-test output. See the thread: Subject: [FFmpeg-devel] [RFC] Make swscale-test perform only one convertion Date: Fri, 29 Jan 2010 01:52:23 +0100
author stefano
date Sat, 30 Jan 2010 13:31:00 +0000
parents 837cd9762b4e
children
line wrap: on
line source

#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 */