0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/loader/win32.h
diego edf4053b98 Remove disabled AVIFILE-specific preprocessor code.
It will never get enabled in MPlayer, nor is it more than cruft.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30526 b3059339-0415-0410-9bf9-f77b7e298cf2
2010-02-08 10:14:42 +00:00

35 lines
696 B
C

/*
* Modified for use with MPlayer, detailed changelog at
* http://svn.mplayerhq.hu/mplayer/trunk/
*/
#ifndef MPLAYER_WIN32_H
#define MPLAYER_WIN32_H
#include <time.h>
#include "wine/windef.h"
#include "wine/winbase.h"
#include "com.h"
void my_garbagecollection(void);
typedef struct {
UINT uDriverSignature;
HINSTANCE hDriverModule;
DRIVERPROC DriverProc;
DWORD dwDriverID;
} DRVR;
typedef DRVR *PDRVR;
typedef DRVR *NPDRVR;
typedef DRVR *LPDRVR;
typedef struct tls_s tls_t;
void* LookupExternal(const char* library, int ordinal);
void* LookupExternalByName(const char* library, const char* name);
#endif /* MPLAYER_WIN32_H */