Read an XML node

1.9k Views Asked by At

Hi well I'm coding a C++ .DLL, and I want to know if it's possible to read an XML node with it. The XML file looks like this:

<?xml version="1.0"?>
<XML>
    <VIDEO>
        <FULLSCREEN>TRUE</FULLSCREEN>
    </VIDEO>

</XML>

I want to make the dll check if the "FULLSCREEN" node is true before do anything, like make appear a messagebox if the value is true and do nothing if the value is false. Hope someone can bring some help, thanks in advance.

3

There are 3 best solutions below

0
On

Yes it is, have a look for an XML library e.g. Xerces.

2
On

Assuming windows (implied since you mentioned dll), then use the msxml library API built into windows. http://msdn.microsoft.com/en-us/library/ms759192(v=VS.85).aspx

0
On

You can use PugiXml. It is very convinient IMHO.