2001-07-12 15:27:48 +00:00
|
|
|
#ifndef loader_win32_h
|
|
|
|
#define loader_win32_h
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include <wine/windef.h>
|
|
|
|
#include <wine/winbase.h>
|
|
|
|
#include <com.h>
|
|
|
|
|
2001-10-04 02:21:47 +00:00
|
|
|
extern void my_garbagecollection(void);
|
2001-07-12 15:27:48 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2001-10-08 22:26:14 +00:00
|
|
|
|
2001-07-12 15:27:48 +00:00
|
|
|
extern void* LookupExternal(const char* library, int ordinal);
|
2001-10-04 02:21:47 +00:00
|
|
|
extern void* LookupExternalByName(const char* library, const char* name);
|
2001-07-12 15:27:48 +00:00
|
|
|
|
2001-12-11 22:58:14 +00:00
|
|
|
extern void* my_mreq(int size, int to_zero);
|
|
|
|
extern int my_release(void* memory);
|
|
|
|
|
2001-10-08 22:26:14 +00:00
|
|
|
|
2001-07-12 15:27:48 +00:00
|
|
|
#endif
|