2020-09-30 16:53:55 +02:00

13 lines
746 B
C++

//---------------------------------------------------------------------------
// FileDump.h - Writes the contents of a theme file as formatted
// text to a text file. Used for uxbud and other testing so
// its in both FRE and DEBUG builds.
//---------------------------------------------------------------------------
#pragma once
//---------------------------------------------------------------------------
class CUxThemeFile; // forward
//---------------------------------------------------------------------------
HRESULT DumpThemeFile(LPCWSTR pszFileName, CUxThemeFile *pThemeFile, BOOL fPacked,
BOOL fFullInfo);
//---------------------------------------------------------------------------