summaryrefslogtreecommitdiff
path: root/TAO/TAO-INSTALL.html
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-06-14 19:33:54 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-06-14 19:33:54 +0000
commit46068a55c909c9c7df18dd3ae956d1bb9ee34cbe (patch)
tree0e988a6a1236bd8d9e7989b91c24c965c9394459 /TAO/TAO-INSTALL.html
parent41106022cb6506715675fdfa44f9c8a7313b01d3 (diff)
downloadATCD-46068a55c909c9c7df18dd3ae956d1bb9ee34cbe.tar.gz
ChangeLogTag: Mon Jun 14 19:32:12 2004 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/TAO-INSTALL.html')
-rw-r--r--TAO/TAO-INSTALL.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/TAO-INSTALL.html b/TAO/TAO-INSTALL.html
index 335e781ddc5..c2eaebddbd1 100644
--- a/TAO/TAO-INSTALL.html
+++ b/TAO/TAO-INSTALL.html
@@ -438,7 +438,7 @@ The correct way is:
<H3><A NAME="#VC">How to add IDL files into your Visual C++ projects</A></H3>
Point of contact: <A HREF="mailto:nanbor@cs.wustl.edu">Nanbor Wang</A>.
-<P>Each IDL file generates .h, .i and .cpp files. Here is an example of
+<P>Each IDL file generates .h, .inl and .cpp files. Here is an example of
adding an IDL file named foobar.idl into a VC project.
<OL>
<LI>Create/open the workspace. In addition to creating server
@@ -448,8 +448,8 @@ adding an IDL file named foobar.idl into a VC project.
other non-IDL generated files into both client and server
projects.</LI>
- <LI>Added foobarC.h, foobarC.i, foobarC.cpp, foobarS.h, foobarS.i, and
- foobarS.cpp into server project and foobarC.h, foobarC.i,
+ <LI>Added foobarC.h, foobarC.inl, foobarC.cpp, foobarS.h, foobarS.inl, and
+ foobarS.cpp into server project and foobarC.h, foobarC.inl,
foobarC.cpp into client projects.</LI>
<LI>Now open the project setting window of foobar_idl (Project -&gt;
@@ -469,12 +469,12 @@ adding an IDL file named foobar.idl into a VC project.
<PRE>
$(InputDir)\$(InputName)S.h
$(InputDir)\$(InputName)C.h
- $(InputDir)\$(InputName)C.i
+ $(InputDir)\$(InputName)C.inl
$(InputDir)\$(InputName)C.cpp
- $(InputDir)\$(InputName)S.i
+ $(InputDir)\$(InputName)S.inl
$(InputDir)\$(InputName)S.cpp
$(InputDir)\$(InputName)S_T.h
- $(InputDir)\$(InputName)S_T.i
+ $(InputDir)\$(InputName)S_T.inl
$(InputDir)\$(InputName)S_T.cpp
</PRE>
Add only one entry in each line.</LI>