Authors: Mike McCormack <mike@codeweavers.com>, Aric Stewart <aric@codeweavers.com...
[wine/multimedia.git] / tools / winebuild / build.h
blob24ac96adb3c0d6e3fc002cd6c839794e315332a3
1 /*
2 * Copyright 1993 Robert J. Amstadt
3 * Copyright 1995 Martin von Loewis
4 * Copyright 1995, 1996, 1997 Alexandre Julliard
5 * Copyright 1997 Eric Youngdale
6 * Copyright 1999 Ulrich Weigand
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifndef __WINE_BUILD_H
24 #define __WINE_BUILD_H
26 #ifndef __WINE_CONFIG_H
27 # error You must include config.h to use this header
28 #endif
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
34 typedef enum
36 TYPE_VARIABLE, /* variable */
37 TYPE_PASCAL, /* pascal function (Win16) */
38 TYPE_ABS, /* absolute value (Win16) */
39 TYPE_STUB, /* unimplemented stub */
40 TYPE_STDCALL, /* stdcall function (Win32) */
41 TYPE_CDECL, /* cdecl function (Win32) */
42 TYPE_VARARGS, /* varargs function (Win32) */
43 TYPE_EXTERN, /* external symbol (Win32) */
44 TYPE_NBTYPES
45 } ORD_TYPE;
47 typedef enum
49 SPEC_WIN16,
50 SPEC_WIN32
51 } SPEC_TYPE;
53 typedef struct
55 int n_values;
56 int *values;
57 } ORD_VARIABLE;
59 typedef struct
61 char arg_types[21];
62 } ORD_FUNCTION;
64 typedef struct
66 int value;
67 } ORD_ABS;
69 typedef struct
71 ORD_TYPE type;
72 int ordinal;
73 int offset;
74 int lineno;
75 int flags;
76 char *name; /* public name of this function */
77 char *link_name; /* name of the C symbol to link to */
78 char *export_name; /* name exported under for noname exports */
79 union
81 ORD_VARIABLE var;
82 ORD_FUNCTION func;
83 ORD_ABS abs;
84 } u;
85 } ORDDEF;
87 typedef struct
89 char *file_name; /* file name of the dll */
90 char *dll_name; /* internal name of the dll */
91 char *owner_name; /* name of the 32-bit dll owning this one */
92 char *init_func; /* initialization routine */
93 SPEC_TYPE type; /* type of dll (Win16/Win32) */
94 int base; /* ordinal base */
95 int limit; /* ordinal limit */
96 int stack_size; /* exe stack size */
97 int heap_size; /* exe heap size */
98 int nb_entry_points; /* number of used entry points */
99 int alloc_entry_points; /* number of allocated entry points */
100 int nb_names; /* number of entry points with names */
101 int nb_resources; /* number of resources */
102 int characteristics; /* characteristics for the PE header */
103 int subsystem; /* subsystem id */
104 int subsystem_major; /* subsystem version major number */
105 int subsystem_minor; /* subsystem version minor number */
106 ORDDEF *entry_points; /* dll entry points */
107 ORDDEF **names; /* array of entry point names (points into entry_points) */
108 ORDDEF **ordinals; /* array of dll ordinals (points into entry_points) */
109 struct resource *resources; /* array of dll resources (format differs between Win16/Win32) */
110 } DLLSPEC;
112 /* entry point flags */
113 #define FLAG_NORELAY 0x01 /* don't use relay debugging for this function */
114 #define FLAG_NONAME 0x02 /* don't import function by name */
115 #define FLAG_RET16 0x04 /* function returns a 16-bit value */
116 #define FLAG_RET64 0x08 /* function returns a 64-bit value */
117 #define FLAG_I386 0x10 /* function is i386 only */
118 #define FLAG_REGISTER 0x20 /* use register calling convention */
119 #define FLAG_PRIVATE 0x40 /* function is private (cannot be imported) */
121 #define FLAG_FORWARD 0x80 /* function is a forwarded name */
123 /* Offset of a structure field relative to the start of the struct */
124 #define STRUCTOFFSET(type,field) ((int)&((type *)0)->field)
126 /* Offset of register relative to the start of the CONTEXT struct */
127 #define CONTEXTOFFSET(reg) STRUCTOFFSET(CONTEXT86,reg)
129 /* Offset of register relative to the start of the STACK16FRAME struct */
130 #define STACK16OFFSET(reg) STRUCTOFFSET(STACK16FRAME,reg)
132 /* Offset of register relative to the start of the STACK32FRAME struct */
133 #define STACK32OFFSET(reg) STRUCTOFFSET(STACK32FRAME,reg)
135 /* Offset of the stack pointer relative to %fs:(0) */
136 #define STACKOFFSET (STRUCTOFFSET(TEB,cur_stack))
139 #define MAX_ORDINALS 65535
141 /* global functions */
143 #ifndef __GNUC__
144 #define __attribute__(X)
145 #endif
147 extern void *xmalloc (size_t size);
148 extern void *xrealloc (void *ptr, size_t size);
149 extern char *xstrdup( const char *str );
150 extern char *strupper(char *s);
151 extern void fatal_error( const char *msg, ... )
152 __attribute__ ((__format__ (__printf__, 1, 2)));
153 extern void fatal_perror( const char *msg, ... )
154 __attribute__ ((__format__ (__printf__, 1, 2)));
155 extern void error( const char *msg, ... )
156 __attribute__ ((__format__ (__printf__, 1, 2)));
157 extern void warning( const char *msg, ... )
158 __attribute__ ((__format__ (__printf__, 1, 2)));
159 extern void output_standard_file_header( FILE *outfile );
160 extern FILE *open_input_file( const char *srcdir, const char *name );
161 extern void close_input_file( FILE *file );
162 extern void dump_bytes( FILE *outfile, const unsigned char *data, int len,
163 const char *label, int constant );
164 extern int remove_stdcall_decoration( char *name );
165 extern DLLSPEC *alloc_dll_spec(void);
166 extern void free_dll_spec( DLLSPEC *spec );
167 extern const char *make_c_identifier( const char *str );
168 extern int get_alignment(int alignBoundary);
170 extern void add_import_dll( const char *name, int delay );
171 extern void add_ignore_symbol( const char *name );
172 extern void read_undef_symbols( char **argv );
173 extern int resolve_imports( DLLSPEC *spec );
174 extern int output_imports( FILE *outfile, DLLSPEC *spec );
175 extern int load_res32_file( const char *name, DLLSPEC *spec );
176 extern void output_resources( FILE *outfile, DLLSPEC *spec );
177 extern void load_res16_file( const char *name, DLLSPEC *spec );
178 extern int output_res16_data( FILE *outfile, DLLSPEC *spec );
179 extern int output_res16_directory( unsigned char *buffer, DLLSPEC *spec );
180 extern void output_dll_init( FILE *outfile, const char *constructor, const char *destructor );
182 extern void BuildRelays16( FILE *outfile );
183 extern void BuildRelays32( FILE *outfile );
184 extern void BuildSpec16File( FILE *outfile, DLLSPEC *spec );
185 extern void BuildSpec32File( FILE *outfile, DLLSPEC *spec );
186 extern void BuildDef32File( FILE *outfile, DLLSPEC *spec );
187 extern void BuildDebugFile( FILE *outfile, const char *srcdir, char **argv );
189 extern int parse_spec_file( FILE *file, DLLSPEC *spec );
190 extern int parse_def_file( FILE *file, DLLSPEC *spec );
191 extern int parse_debug_channels( const char *srcdir, const char *filename );
193 /* global variables */
195 extern int current_line;
196 extern int UsePIC;
197 extern int debugging;
198 extern int nb_debug_channels;
199 extern int nb_lib_paths;
200 extern int nb_errors;
201 extern int display_warnings;
202 extern int kill_at;
204 extern char *input_file_name;
205 extern const char *output_file_name;
206 extern char **debug_channels;
207 extern char **lib_path;
209 extern char *ld_command;
210 extern char *nm_command;
212 #endif /* __WINE_BUILD_H */