summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/midl.xml
blob: 4d5c7e0f169a00489130e07adeddebf21b530e63 (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
<!-- __COPYRIGHT__ -->
<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>