XML files

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Hi,
I am writing an ATL com object in VC-7 and please somone can tell me how can
i read an xml file using the atl or vc++ function`s???

Thanks
 
There are no specific xml implementation in ATL - so you'll have to either
get a C++ xml library or, import the MS XMLDOM.
#include"c:\...\msxml4.dll";
 
Back
Top