comparison loader/win32.h @ 28051:9e739bdb049c

Get rid of pointless 'extern' keywords.
author diego
date Wed, 03 Dec 2008 23:01:03 +0000
parents a8ea87c71d18
children 0e067fdaf442
comparison
equal deleted inserted replaced
28050:7e53b0b71b18 28051:9e739bdb049c
19 #define printf(a, ...) avm_printf("Win32 plugin", a, ## __VA_ARGS__) 19 #define printf(a, ...) avm_printf("Win32 plugin", a, ## __VA_ARGS__)
20 #endif 20 #endif
21 #endif 21 #endif
22 #endif 22 #endif
23 23
24 extern void my_garbagecollection(void); 24 void my_garbagecollection(void);
25 25
26 typedef struct { 26 typedef struct {
27 UINT uDriverSignature; 27 UINT uDriverSignature;
28 HINSTANCE hDriverModule; 28 HINSTANCE hDriverModule;
29 DRIVERPROC DriverProc; 29 DRIVERPROC DriverProc;
35 typedef DRVR *LPDRVR; 35 typedef DRVR *LPDRVR;
36 36
37 typedef struct tls_s tls_t; 37 typedef struct tls_s tls_t;
38 38
39 39
40 extern void* LookupExternal(const char* library, int ordinal); 40 void* LookupExternal(const char* library, int ordinal);
41 extern void* LookupExternalByName(const char* library, const char* name); 41 void* LookupExternalByName(const char* library, const char* name);
42 42
43 #endif /* MPLAYER_WIN32_H */ 43 #endif /* MPLAYER_WIN32_H */