0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
mpv/loader/win32.h
arpi b4caa85013 avifile merge. kabi: indent changes really suxxxx
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3466 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-12-11 22:58:14 +00:00

34 lines
671 B
C

#ifndef loader_win32_h
#define loader_win32_h
#include <time.h>
#include <wine/windef.h>
#include <wine/winbase.h>
#include <com.h>
extern 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;
extern void* LookupExternal(const char* library, int ordinal);
extern void* LookupExternalByName(const char* library, const char* name);
extern void* my_mreq(int size, int to_zero);
extern int my_release(void* memory);
#endif