mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 13:35:45 -04:00
Initial community commit
This commit is contained in:
17
Src/Wasabi/api/font/skinfont.h
Normal file
17
Src/Wasabi/api/font/skinfont.h
Normal file
@ -0,0 +1,17 @@
|
||||
#ifndef _SKINFONT_H
|
||||
#define _SKINFONT_H
|
||||
|
||||
#include <api/skin/xmlobject.h>
|
||||
|
||||
class SkinFont : public XmlObjectI
|
||||
{
|
||||
public:
|
||||
SkinFont();
|
||||
~SkinFont();
|
||||
void installFont(const wchar_t *filename, const wchar_t *path);
|
||||
virtual int setXmlOption(const wchar_t *name, const wchar_t *val);
|
||||
private:
|
||||
StringW tempFn;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user