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.
Yes it is, have a look for an XML library e.g. Xerces.