WHAT'S NEW with version 0.1.0: - Integrated patches from Alexandre. - Minor bug fix in if1632.S WHAT'S NEW with version 0.0.5: - Patches from Alexandre Julliard. Some integration with Tcl. - Generic interface for callback procedures. This will allow callbacks into DLLs. - MakeProcInstance() has been implemented but untested. WHAT'S NEW with version 0.0.4: - Eric Youngdale modified wine.c and selector.c to allow loading of Windows DLLs. - Added global memory allocation routines (GlobalAlloc, GlobalFree, and GlobalLock) - Bitmap resource loading into global memory.
22 lines
522 B
C
22 lines
522 B
C
#ifndef WINE_H
|
|
#define WINE_H
|
|
|
|
#include "dlls.h"
|
|
|
|
struct w_files{
|
|
struct w_files * next;
|
|
char * name; /* Name, as it appears in the windows binaries */
|
|
char * filename; /* Actual name of the unix file that satisfies this */
|
|
int fd;
|
|
struct mz_header_s *mz_header;
|
|
struct ne_header_s *ne_header;
|
|
struct ne_segment_table_entry_s *seg_table;
|
|
struct segment_descriptor_s *selector_table;
|
|
char * lookup_table;
|
|
char * nrname_table;
|
|
char * rname_table;
|
|
};
|
|
|
|
extern struct w_files * wine_files;
|
|
|
|
#endif
|