Leaked source code of windows server 2003
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.

20 lines
419 B

  1. #ifndef _XMLWRAPPER_H_
  2. #define _XMLWRAPPER_H_
  3. #include "p3pglobal.h"
  4. #include "xmltree.h"
  5. #include <objbase.h>
  6. #include <msxml.h>
  7. typedef wchar_t XMLchar;
  8. IXMLDOMDocument *createXMLDocument();
  9. IXMLDOMDocument *parseXMLDocument(char *pszFileName);
  10. TreeNode *createXMLtree(IXMLDOMDocument *pDocument);
  11. char *unicode2ASCII(XMLchar *pwszSource);
  12. BSTR ASCII2unicode(const char *pszSource);
  13. #endif