Windows2003-3790/inetcore/wininet/p3p/xmlwrapper.h
2020-09-30 16:53:55 +02:00

21 lines
419 B
C

#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