summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/midl.xml
blob: 8885785fad7359d427f31863dc0131f012dbf2b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!--
__COPYRIGHT__

This file is processed by the bin/SConsDoc.py module.
See its __doc__ string for a discussion of the format.
-->
<tool name="midl">
<summary>
XXX
</summary>
</tool>

<builder name="TypeLibrary">
<summary>
Builds a Windows type library (<filename>.tlb</filename>)
file from an input IDL file (<filename>.idl</filename>).
In addition, it will build the associated inteface stub and
proxy source files,
naming them according to the base name of the <filename>.idl</filename> file.
For example,

<example>
env.TypeLibrary(source="foo.idl")
</example>

Will create <filename>foo.tlb</filename>,
<filename>foo.h</filename>,
<filename>foo_i.c</filename>,
<filename>foo_p.c</filename>
and
<filename>foo_data.c</filename>
files.
</summary>
</builder>