widl: Default to fully interpreted stubs mode.
[wine.git] / tools / widl / widl.man.in
blob2ff881244831df7104b4e4b40848656f7ea70fc5
1 .TH WIDL 1 "October 2007" "@PACKAGE_STRING@" "Wine Developers Manual"
2 .SH NAME
3 widl \- Wine Interface Definition Language (IDL) compiler
4 .SH SYNOPSIS
5 .B widl
6 [\fIoptions\fR] \fIIDL_file\fR
7 .br
8 .B widl
9 [\fIoptions\fR] \fB--dlldata-only\fR \fIname1\fR [\fIname2\fR...]
10 .SH DESCRIPTION
11 When no options are used the program will generate a header file, and possibly
12 client and server stubs, proxy and dlldata files, a typelib, and a UUID file,
13 depending on the contents of the IDL file.  If any of the options \fB-c\fR,
14 \fB-h\fR, \fB-p\fR, \fB-s\fR, \fB-t\fR, \fB-u\fR or \fB--local-stubs\fR is given,
15 .B widl
16 will only generate the requested files, and no others.  When run with
17 \fB--dlldata-only\fR, widl will only generate a dlldata file, and it will
18 contain a list of the names passed as arguments.  Usually the way this file
19 is updated is that each time
20 .B widl
21 is run, it reads any existing dlldata file, and if necessary regenerates it
22 with the same list of names, but with the present proxy file included.
23 .PP
24 When run without any arguments,
25 .B widl
26 will print a help message.
27 .PP
28 .SH OPTIONS
29 .PP
30 .B General options:
31 .IP "\fB-V\fR"
32 Print version number and exit.
33 .IP "\fB-o, --output=\fIname"
34 Set the name of the output file. When generating multiple output
35 files, this sets only the base name of the file; the respective output
36 files are then named \fIname\fR.h, \fIname\fR_p.c, etc.  If a full
37 file name with extension is specified, only that file is generated.
38 .IP "\fB-b, --target=\fIcpu-manufacturer\fR[\fI-kernel\fR]\fI-os\fR"
39 Set the target architecture when cross-compiling. The target
40 specification is in the standard autoconf format as returned by
41 \fBconfig.sub\fR.
42 .IP "\fB-m32, -m64, --win32, --win64\fR"
43 Force the target architecture to 32-bit or 64-bit.
44 .IP \fB\-\-sysroot=\fIdir\fR
45 Prefix the standard include paths with \fIdir\fR.
46 .IP \fB\-\-nostdinc\fR
47 Do not search standard include paths like /usr/include and
48 /usr/local/include.
49 .PP
50 .B Header options:
51 .IP "\fB-h\fR"
52 Generate header files. The default output filename is \fIinfile\fB.h\fR.
53 .IP "\fB--oldnames\fR"
54 Use old naming conventions.
55 .PP
56 .B Type library options:
57 .IP \fB-t\fR
58 Generate a type library. The default output filename is
59 \fIinfile\fB.tlb\fR.  If the output file name ends in \fB.res\fR, a
60 binary resource file containing the type library is generated instead.
61 .IP "\fB-L \fIpath\fR"
62 Add a directory to the library search path for imported typelibs. The
63 option can be specified multiple times.
64 .IP \fB--oldtlb\fR
65 Generate a type library in the old format (SLTG format).
66 .PP
67 .B UUID file options:
68 .IP "\fB-u\fR"
69 Generate a UUID file. The default output filename is \fIinfile\fB_i.c\fR.
70 .PP
71 .B Proxy/stub generation options:
72 .IP "\fB--align=\fIn\fB, --packing=\fIn\fR"
73 Set the structure packing to \fIn\fR. Supported values are 2, 4, and 8.
74 .IP "\fB-c\fR"
75 Generate a client stub file. The default output filename is \fIinfile\fB_c.c\fR.
76 .IP "\fB-Os\fR"
77 Generate inline stubs.
78 .IP "\fB-Oi\fR"
79 Generate old-style interpreted stubs.
80 .IP "\fB-Oif, -Oic, -Oicf\fR"
81 Generate new-style fully interpreted stubs. This is the default.
82 .IP "\fB-p\fR"
83 Generate a proxy. The default output filename is \fIinfile\fB_p.c\fR.
84 .IP "\fB--prefix-all=\fIprefix\fR"
85 Prefix to put on the name of both client and server stubs.
86 .IP "\fB--prefix-client=\fIprefix\fR"
87 Prefix to put on the name of client stubs.
88 .IP "\fB--prefix-server=\fIprefix\fR"
89 Prefix to put on the name of server stubs.
90 .IP "\fB-s\fR"
91 Generate a server stub file. The default output filename is
92 \fIinfile\fB_s.c\fR.
93 .PP
94 .IP "\fB--winrt\fR"
95 Enable Windows Runtime mode.
96 .IP "\fB--ns_prefix\fR"
97 Prefix namespaces with ABI namespace.
98 .PP
99 .B Registration script options:
100 .IP "\fB-r\fR"
101 Generate a registration script. The default output filename is
102 \fIinfile\fB_r.rgs\fR. If the output file name ends in \fB.res\fR, a
103 binary resource file containing the script is generated instead.
105 .B Dlldata file options:
106 .IP "\fB--dlldata-only\fI name1 \fR[\fIname2\fR...]"
107 Regenerate the dlldata file from scratch using the specified proxy
108 names. The default output filename is \fBdlldata.c\fR.
110 .B Preprocessor options:
111 .IP "\fB-I \fIpath\fR"
112 Add a directory to the include search path. Multiple include
113 directories are allowed.
114 .IP "\fB-D \fIid\fR[\fB=\fIval\fR]"
115 Define preprocessor macro \fIid\fR with value \fIval\fR.
116 .IP "\fB-E\fR"
117 Preprocess only.
118 .IP "\fB-N\fR"
119 Do not preprocess input.
121 .B Debug options:
122 .IP "\fB-W\fR"
123 Enable pedantic warnings.
124 .IP "\fB-d \fIn\fR"
125 Set debug level to the non negative integer \fIn\fR.  If
126 prefixed with \fB0x\fR, it will be interpreted as an hexadecimal
127 number.  For the meaning of values, see the \fBDEBUG\fR section.
129 .B Miscellaneous options:
130 .IP "\fB-app_config\fR"
131 Ignored, present for midl compatibility.
132 .IP "\fB--acf=\fIfile\fR"
133 Use specified application configuration file.
134 .IP "\fB--local-stubs=\fIfile\fR"
135 Generate empty stubs for call_as/local methods in an object interface and
136 write them to \fIfile\fR.
138 .SH DEBUG
139 Debug level \fIn\fR is a bitmask with the following meaning:
140     * 0x01 Tell which resource is parsed (verbose mode)
141     * 0x02 Dump internal structures
142     * 0x04 Create a parser trace (yydebug=1)
143     * 0x08 Preprocessor messages
144     * 0x10 Preprocessor lex messages
145     * 0x20 Preprocessor yacc trace
146 .SH BUGS
147 Bugs can be reported on the
148 .UR https://bugs.winehq.org
149 .B Wine bug tracker
150 .UE .
151 .SH AUTHORS
152 .B widl
153 was originally written by Ove Kåven.  It has been improved by Rob Shearman,
154 Dan Hipschman, and others.  For a complete list, see the git commit logs.
155 This man page was originally written by Hannu Valtonen and then updated by
156 Dan Hipschman.
157 .SH AVAILABILITY
158 .B widl
159 is part of the Wine distribution, which is available through WineHQ,
161 .UR https://www.winehq.org/
162 .B Wine development headquarters
163 .UE .
164 .SH "SEE ALSO"
165 .UR https://www.winehq.org/help
166 .B Wine documentation and support
167 .UE .