You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
419 B
21 lines
419 B
|
|
#ifndef _XMLWRAPPER_H_
|
|
#define _XMLWRAPPER_H_
|
|
|
|
#include "p3pglobal.h"
|
|
#include "xmltree.h"
|
|
|
|
#include <objbase.h>
|
|
#include <msxml.h>
|
|
|
|
typedef wchar_t XMLchar;
|
|
|
|
IXMLDOMDocument *createXMLDocument();
|
|
IXMLDOMDocument *parseXMLDocument(char *pszFileName);
|
|
|
|
TreeNode *createXMLtree(IXMLDOMDocument *pDocument);
|
|
|
|
char *unicode2ASCII(XMLchar *pwszSource);
|
|
BSTR ASCII2unicode(const char *pszSource);
|
|
|
|
#endif
|