blob: bc2a28aeb8fb336f6ee29e1393c2cf98e89c0a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* 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 */
|