Punctuation. ;)
[mplayer/glamo.git] / loader / win32.h
blob46512ada933d8933f97565ccf0709abea93bd1b0
1 #ifndef loader_win32_h
2 #define loader_win32_h
4 #include <time.h>
6 #include "wine/windef.h"
7 #include "wine/winbase.h"
8 #include "com.h"
10 #ifdef AVIFILE
11 #ifdef __GNUC__
12 #include "avm_output.h"
13 #ifndef __cplusplus
14 #define printf(a, ...) avm_printf("Win32 plugin", a, ## __VA_ARGS__)
15 #endif
16 #endif
17 #endif
19 extern void my_garbagecollection(void);
21 typedef struct {
22 UINT uDriverSignature;
23 HINSTANCE hDriverModule;
24 DRIVERPROC DriverProc;
25 DWORD dwDriverID;
26 } DRVR;
28 typedef DRVR *PDRVR;
29 typedef DRVR *NPDRVR;
30 typedef DRVR *LPDRVR;
32 typedef struct tls_s tls_t;
35 extern void* LookupExternal(const char* library, int ordinal);
36 extern void* LookupExternalByName(const char* library, const char* name);
37 extern int expRegisterClassA(const void/*WNDCLASSA*/ *wc);
38 extern int expUnregisterClassA(const char *className, HINSTANCE hInstance);
40 #endif