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
693 B
22 lines
693 B
/*--------------------------------------------------------------------------*
|
|
*
|
|
* Microsoft Windows
|
|
* Copyright (C) Microsoft Corporation, 1992 - 1999
|
|
*
|
|
* File: xmlfile.h
|
|
*
|
|
* Contents: functions to inspect XML document and extract the app. icon from it
|
|
*
|
|
* History: 17-Dec-99 audriusz Created
|
|
*
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef XMLFILE_H_INCLUDED
|
|
#define XMLFILE_H_INCLUDED
|
|
#pragma once
|
|
|
|
// this function validates xml document and loads console icon from it if valid
|
|
HRESULT ExtractIconFromXMLFile(LPCTSTR lpstrFileName, CPersistableIcon &persistableIcon);
|
|
|
|
|
|
#endif // XMLFILE_H_INCLUDED
|