Source code of Windows XP (NT5)
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.

22 lines
671 B

  1. /*--------------------------------------------------------------------------*
  2. *
  3. * Microsoft Windows
  4. * Copyright (C) Microsoft Corporation, 1992 - 1999
  5. *
  6. * File: xmlfile.h
  7. *
  8. * Contents: functions to inspect XML document and extract the app. icon from it
  9. *
  10. * History: 17-Dec-99 audriusz Created
  11. *
  12. *--------------------------------------------------------------------------*/
  13. #ifndef XMLFILE_H_INCLUDED
  14. #define XMLFILE_H_INCLUDED
  15. #pragma once
  16. // this function validates xml document and loads console icon from it if valid
  17. HRESULT ExtractIconFromXMLFile(LPCTSTR lpstrFileName, CPersistableIcon &persistableIcon);
  18. #endif // XMLFILE_H_INCLUDED