Disable 'variable' in Win32 spec files.
[wine] / tools / winebuild / winebuild.man.in
1 .\" -*- nroff -*-
2 .TH WINEBUILD 1 "December 2002" "@PACKAGE_STRING@" "Wine dll builder"
3 .SH NAME
4 winebuild \- Wine dll builder
5 .SH SYNOPSIS
6 .BI winebuild\  [options]\ [input\ files]
7 .SH DESCRIPTION
8 .B winebuild
9 generates the C and assembly files that are necessary to build a Wine
10 dll, which is basically a Win32 dll encapsulated inside a Unix
11 library.
12 .PP
13 .B winebuild
14 has different modes, depending on what kind of file it is asked to
15 generate. The mode is specified by one of the mode options specified
16 below. In addition to the mode option, various other command-line
17 option can be specified, as described in the \fBOPTIONS\fR section.
18 .SH "MODE OPTIONS"
19 You have to specify exactly one of the following options, depending on
20 what you want winebuild to generate.
21 .TP
22 .BI \--spec\  file.spec
23 Build a C file from a spec file (see \fBSPEC FILE SYNTAX\fR for
24 details). The resulting C file must be compiled and linked to the
25 other object files to build a working Wine dll.
26 .br
27 In that mode, the
28 .I input files
29 should be the list of all object files that will be linked into the
30 final dll, to allow
31 .B winebuild
32 to get the list of all undefined symbols that need to be imported from
33 other dlls.
34 .TP
35 .BI \--exe\  name
36 Build a C file for the named executable. This is basically the same as
37 the --spec mode except that it doesn't require a .spec file as input,
38 since an executable doesn't export functions. The resulting C file
39 must be compiled and linked to the other object files to build a
40 working Wine executable, and all the other object files must be listed
41 as
42 .I input files.
43 .TP
44 .BI \--def\  file.spec
45 Build a .def file from a spec file. This is used when building dlls
46 with a PE (Win32) compiler.
47 .TP
48 .B \--debug
49 Build a C file containing the definitions for debugging channels. In
50 that mode the
51 .I input files
52 should be a list of C files to search for debug channel
53 definitions. The resulting C file must be compiled and linked with the
54 dll.
55 .TP
56 .B \--glue
57 Build a C file containing the glue code for the 16-bit calls contained
58 in the
59 .I input files.
60 These calls must be specified in the source files using special
61 markers, as described in the \fBGLUE FUNCTIONS\fR section.
62 .TP
63 .B \--relay16
64 Generate the assembly code for the 16-bit relay routines. This is for
65 Wine internal usage only, you should never need to use this option.
66 .TP
67 .B \--relay32
68 Generate the assembly code for the 32-bit relay routines. This is for
69 Wine internal usage only, you should never need to use this option.
70 .SH OPTIONS
71 .TP
72 .BI \-C\  directory
73 Change to the specified directory before reading source files. Only
74 meaningful in
75 .BR \--debug\  and\  --glue\  modes.
76 .TP
77 .BI \-D\  symbol
78 Ignored for compatibility with the C compiler.
79 .TP
80 .BI \-e\  function
81 Specify the module entry point function; if not specified, the default
82 is
83 .B DllMain
84 for dlls, and
85 .B main
86 or
87 .B WinMain
88 for CUI or GUI executables respectively. This is only valid for Win32
89 modules.
90 .TP
91 .BI \-f\  flags
92 Ignored for compatibility with the C compiler.
93 .TP
94 .BI \-F\  filename
95 Set the file name of the module. The default is to use the base name
96 of the spec file (without any extension).
97 .TP
98 .B \-h
99 Display a usage message and exit.
100 .TP
101 .BI \-H\  size
102 Specify the size of the module local heap in bytes (only valid for
103 Win16 modules); default is no local heap.
104 .TP
105 .BI \-I\  directory
106 Ignored for compatibility with the C compiler.
107 .TP
108 .BI \-i\  [-]symbol[,[-]symbol]
109 Specify a list of symbols that should be ignored when resolving
110 undefined symbols against the imported libraries. This forces these
111 symbols to be resolved from the Unix C library (or from another Unix
112 library linked with the application). If a symbol is prefixed by '-'
113 it is removed from the list instead of being added; a stand-alone '-'
114 clears the whole list.
115 .TP
116 .BI \-K\  flags
117 Ignored for compatibility with the C compiler.
118 .TP
119 .BI \-k
120 Remove the stdcall decorations from the symbol names in the
121 generated .def file. Only meaningful in \fB--def\fR mode.
122 .TP
123 .BI \-L\  directory
124 Append the specified directory to the list of directories that are
125 searched for import libraries.
126 .TP
127 .BI \-l\  lib.dll
128 Import the specified library, looking for a corresponding
129 \fIlib.dll.so\fR file in the directories specified with the \fB-L\fR
130 option.
131 .TP
132 .BI \-dl\  lib.dll
133 Same as the \fB-l\fR option, but import the specified library in
134 delayed mode (i.e. the library won't be loaded until a function
135 imported from it is actually called).
136 .TP
137 .BI \-M\  module
138 Specify that we are building a 16-bit dll, that will ultimately be
139 linked together with the 32-bit dll specified in \fImodule\fR.  Only
140 meaningful in \fB--spec\fR mode.
141 .TP
142 .BI \-m\  mode
143 Set the executable mode, which can be one of the following:
144 .br
145 .B cui
146 for a command line ASCII executable,
147 .br
148 .B gui
149 for a graphical ASCII executable,
150 .br
151 .B cuiw
152 for a command line Unicode executable,
153 .br
154 .B guiw
155 for a graphical Unicode executable.
156 .br
157 A command line executable entry point is a normal C \fBmain\fR
158 function. A graphical executable has a \fBWinMain\fR entry point
159 instead. The ASCII/Unicode distinction applies to the strings that are
160 passed to the entry point.
161 .br
162 This option is only meaningful in \fB--exe\fR mode.
163 .TP
164 .BI \-N\  dllname
165 Set the internal name of the module. It is only used in Win16
166 modules. The default is to use the base name of the spec file (without
167 any extension). This is used for KERNEL, since it lives in
168 KRNL386.EXE. It shouldn't be needed otherwise.
169 .TP
170 .BI \-o\  file
171 Set the name of the output file (default is standard output).
172 .TP
173 .BI \-r\  rsrc.res
174 Load resources from the specified binary resource file. The
175 \fIrsrc.res\fR can be produced from a source resource file with
176 .BR wrc(1)
177 (or with a Windows resource compiler).
178 .br
179 This option is only necessary for Win16 resource files, the Win32 ones
180 can simply listed as
181 .I input files
182 and will automatically be handled correctly (though the
183 .B \-r
184 option will also work for Win32 files).
185 .TP
186 .B \-w
187 Turn on warnings.
188 .SH "SPEC FILE SYNTAX"
189 .SS "General syntax"
190 A spec file should contain a list of ordinal declarations. The general
191 syntax is the following:
192 .PP
193 .I ordinal functype
194 .RI [ flags ]\  exportname \ \fB(\fR\ [ args... ] \ \fB)\fI\ handler
195 .br
196 .IB ordinal\  variable
197 .RI [ flags ]\  exportname \ \fB(\fR\ [ data... ] \ \fB)
198 .br
199 .IB ordinal\  extern
200 .RI [ flags ]\  exportname\ symbolname
201 .br
202 .IB ordinal\  stub
203 .RI [ flags ]\  exportname
204 .br
205 .IB ordinal\  equate
206 .RI [ flags ]\  exportname\ data
207 .br
208 .IB ordinal\  forward
209 .RI [ flags ]\  exportname\ forwardname
210 .br
211 .BI #\  comments
212 .PP
213 Lines whose first character is a
214 .B #
215 will be ignored as comments.
216 .PP
217 .I ordinal
218 specifies the ordinal number corresponding to the entry point, or '@'
219 for automatic ordinal allocation (Win32 only).
220 .PP
221 .I flags
222 is a series of optional flags, preceded by a '-' character. The
223 supported flags are:
224 .RS
225 .TP
226 .B -norelay
227 The entry point is not displayed in relay debugging traces (Win32
228 only).
229 .TP
230 .B -noname
231 The entry point will be imported by ordinal instead of by name.
232 .TP
233 .B -ret64
234 The function returns a 64-bit value (Win32 only).
235 .TP
236 .B -i386
237 The entry point is only available on i386 platforms.
238 .TP
239 .B -register
240 The function uses CPU register to pass arguments.
241 .TP
242 .B -interrupt
243 The function is an interrupt handler routine.
244 .SS "Function ordinals"
245 Syntax:
246 .br
247 .I ordinal functype
248 .RI [ flags ]\  exportname \ \fB(\fR\ [ args... ] \ \fB)\fI\ handler
249 .br
250
251 This declaration defines a function entry point.  The prototype defined by
252 .IR exportname \ \fB(\fR\ [ args... ] \ \fB)
253 specifies the name available for dynamic linking and the format of the
254 arguments. '@' can be used instead of
255 .I exportname
256 for ordinal-only exports.
257 .PP
258 .I functype
259 should be one of:
260 .RS
261 .TP
262 .B stdcall
263 for a normal Win32 function
264 .TP
265 .B cdecl
266 for a Win32 function using the C calling convention
267 .TP
268 .B varargs
269 for a Win32 function taking a variable number of arguments
270 .TP
271 .B pascal
272 for a Win16 function returning a 32-bit value
273 .TP
274 .B pascal16
275 for a Win16 function returning a 16-bit value.
276 .RE
277 .PP
278 .I args
279 should be one or several of:
280 .RS
281 .TP
282 .B word
283 (16-bit unsigned value)
284 .TP
285 .B s_word
286 (16-bit signed word)
287 .TP
288 .B long
289 (32-bit value)
290 .TP
291 .B double
292 (64-bit value)
293 .TP
294 .B ptr
295 (linear pointer)
296 .TP
297 .B str
298 (linear pointer to a null-terminated ASCII string)
299 .TP
300 .B wstr
301 (linear pointer to a null-terminated Unicode string)
302 .TP
303 .B segptr
304 (segmented pointer)
305 .TP
306 .B segstr
307 (segmented pointer to a null-terminated ASCII string).
308 .HP
309 .RB Only\  ptr ,\  str ,\  wstr ,\  long\  and\  double
310 are valid for Win32 functions.
311 .RE
312 .PP
313 .I handler
314 is the name of the actual C function that will implement that entry
315 point in 32-bit mode. The handler can also be specified as
316 .IB dllname . function
317 to define a forwarded function (one whose implementation is in another
318 dll).
319 .PP
320 This first example defines an entry point for the 16-bit
321 CreateWindow() call (the ordinal 100 is just an example):
322 .IP
323 100 pascal CreateWindow(ptr ptr long s_word s_word s_word s_word word word word ptr) WIN_CreateWindow
324 .PP
325 This second example defines an entry point for the 32-bit GetFocus()
326 call:
327 .IP
328 @ stdcall GetFocus() GetFocus
329 .PP
330 To declare a function using a variable number of arguments in Win16,
331 specify the function as taking no arguments. The arguments are then
332 available with CURRENT_STACK16->args. In Win32, specify the function
333 as
334 .B varargs
335 and declare it with a '...' parameter in the C file.  See the
336 wsprintf* functions in user.spec and user32.spec for an example.
337 .SS "Variable ordinals"
338 Syntax:
339 .br
340 .IB ordinal\  variable
341 .RI [ flags ]\  exportname \ \fB(\fR\ [ data... ] \ \fB)
342 .PP
343 This declaration defines data storage as 32-bit words at the ordinal
344 specified.
345 .I exportname
346 will be the name available for dynamic
347 linking.
348 .I data
349 can be a decimal number or a hex number preceeded by "0x".  The
350 following example defines the variable VariableA at ordinal 2 and
351 containing 4 ints:
352 .IP
353 2 variable VariableA(-1 0xff 0 0)
354 .PP
355 This declaration only works in Win16 spec files. In Win32 you should
356 use
357 .B extern
358 instead (see below).
359 .SS "Extern ordinals"
360 Syntax:
361 .br
362 .IB ordinal\  extern
363 .RI [ flags ]\  exportname\ symbolname
364 .PP
365 This declaration defines an entry that simply maps to a C symbol
366 (variable or function). It only works in Win32 spec files.
367 .I exportname
368 will point to the symbol
369 .I symbolname
370 that must be defined in the C code. Alternatively, it can be of the
371 form
372 .IB dllname . symbolname
373 to define a forwarded symbol (one whose implementation is in another
374 dll).
375
376 .SS "Stub ordinals"
377 Syntax:
378 .br
379 .IB ordinal\  stub
380 .RI [ flags ]\  exportname
381 .PP
382 This declaration defines a stub function. It makes the name and
383 ordinal available for dynamic linking, but will terminate execution
384 with an error message if the function is ever called.
385 .SS "Equate ordinals"
386 Syntax:
387 .br
388 .IB ordinal\  equate
389 .RI [ flags ]\  exportname\ data
390 .PP
391 This declaration defines an ordinal as an absolute value.
392 .I exportname
393 will be the name available for dynamic linking.
394 .I data
395 can be a decimal number or a hex number preceeded by "0x".
396 .SS "Forwarded ordinals"
397 Syntax:
398 .br
399 .IB ordinal\  forward
400 .RI [ flags ]\  exportname\ forwardname
401 .PP
402 This declaration defines an entry that is forwarded to another entry
403 point (kind of a symbolic link).
404 .I exportname
405 will forward to the
406 entry point
407 .I forwardname
408 that must be of the form
409 .B DLL.Function.
410 This declaration only works in Win32 spec files.
411 .SH "GLUE FUNCTIONS"
412 Glue functions are used to call down to 16-bit code from a 32-bit
413 function. This is done by declaring a special type of function
414 prototype in the source file that needs to call to 16-bit code, and
415 processing the source file through
416 .I winebuild --glue.
417 .PP
418 These prototypes must be of one of the following forms:
419 .PP
420 .B extern WORD CALLBACK \fIprefix\fB_CallTo16_word_\fIxxx\fB( FARPROC16 func, \fIargs\fB );
421 .br
422 .B extern LONG CALLBACK \fIprefix\fB_CallTo16_long_\fIxxx\fB( FARPROC16 func, \fIargs\fB );
423 .PP
424 The
425 .I prefix
426 can be anything you need to make the function names unique inside a
427 given dll. The
428 .I xxx
429 characters specify the type of the arguments, with one letter for each
430 argument. A \fBw\fR indicates a WORD argument, a \fBl\fR indicates a
431 LONG argument.
432 .PP
433 All the CallTo16 prototypes must be located between the special
434 markers
435 .B ### start build ###
436 and
437 .B ### stop build ###
438 (which have to be inside C comments of course).
439 .PP
440 Here's what a real life example looks like:
441 .PP
442 .B /* ### start build ### */
443 .br
444 .B extern WORD CALLBACK PRTDRV_CallTo16_word_ww(FARPROC16,WORD,WORD);
445 .br
446 .B /* ### stop build ### */
447 .SH AUTHORS
448 .B winebuild
449 has been worked on by many people over the years. The main authors are
450 Robert J. Amstadt, Alexandre Julliard, Martin von Loewis, Ulrich
451 Weigand and Eric Youngdale. Many other Wine developers have
452 contributed, please check the file Changelog in the Wine distribution
453 for the complete details.
454 .SH BUGS
455 It is not yet possible to use a PE-format dll in an import
456 specification; only Wine dlls can be imported.
457 .PP
458 If you find a bug, please submit a bug report at
459 .UR http://bugs.winehq.com
460 .B http://bugs.winehq.com.
461 .UE
462 .SH AVAILABILITY
463 .B winebuild
464 is part of the wine distribution, which is available through WineHQ,
465 the
466 .B wine
467 development headquarters, at
468 .UR http://www.winehq.com/
469 .B http://www.winehq.com/.
470 .UE
471 .SH "SEE ALSO"
472 .BR wine (1),
473 .BR wrc (1).