ultimatepp/uppsrc/umk/MacOs.cpp
cxl 6b41e4e761 umk: Fixed to compile in macos
git-svn-id: svn://ultimatepp.org/upp/trunk@12983 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-04-10 21:50:06 +00:00

37 lines
No EOL
494 B
C++

#include "umake.h"
#include <Draw/Draw.h>
#ifdef PLATFORM_COCOA
namespace Upp { // Silence linker errors
CommonFontInfo GetFontInfoSys(Font font)
{
CommonFontInfo fi;
return fi;
}
GlyphInfo GetGlyphInfoSys(Font font, int chr)
{
GlyphInfo gi;
return gi;
}
Vector<FaceInfo> GetAllFacesSys()
{
Vector<FaceInfo> r;
return r;
}
String GetFontDataSys(Font font)
{
return String();
}
void RenderCharacterSys(FontGlyphConsumer& sw, double x, double y, int chr, Font font)
{
}
};
#endif