19 lines
577 B
C
19 lines
577 B
C
// GetFontFile.h
|
|
//
|
|
// Copyright (C) 2001 Hans Dietrich
|
|
//
|
|
// This software is released into the public domain.
|
|
// You are free to use it in any way you like.
|
|
//
|
|
// This software is provided "as is" with no expressed
|
|
// or implied warranty. I accept no liability for any
|
|
// damage or loss of business that this software may cause.
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef GETFONTFILE_H
|
|
#define GETFONTFILE_H
|
|
|
|
BOOL GetFontFile(LPCTSTR lpszFontName, CString& strDisplayName, CString& strFontFile);
|
|
|
|
#endif //GETFONTFILE_H
|