Release 0.3.0
[wine/multimedia.git] / include / wine.h
blob621fcdb4d1628ba025b22b700c6de0683caf6fa8
1 #ifndef WINE_H
2 #define WINE_H
4 #include "dlls.h"
6 struct w_files{
7 struct w_files * next;
8 char * name; /* Name, as it appears in the windows binaries */
9 char * filename; /* Actual name of the unix file that satisfies this */
10 int fd;
11 struct mz_header_s *mz_header;
12 struct ne_header_s *ne_header;
13 struct ne_segment_table_entry_s *seg_table;
14 struct segment_descriptor_s *selector_table;
15 char * lookup_table;
16 char * nrname_table;
17 char * rname_table;
20 extern struct w_files * wine_files;
22 #endif