tags:

views:

165

answers:

2

I would like to write a simple xml file using xmllite in win32 c++. the file will be saved over every time the user saves. How do I do this? I'd rather not include any new libraries for this...

+5  A: 

Start by reading the documentation: http://msdn.microsoft.com/en-us/magazine/cc163436.aspx#S4

nico
+2  A: 

Since your question specifies C++, and you've not specified why you must use xmllite, I will suggest another package for your consideration called tinyxml.

It's a pretty simple tool, and uses straight C++.

San Jacinto