Take const char pointers in lime::Font methods

This commit is contained in:
tobil4sk
2023-04-21 19:11:38 +01:00
parent 79eed06b74
commit 7c9a1894f6
2 changed files with 7 additions and 6 deletions

View File

@@ -49,8 +49,8 @@ namespace lime {
int GetAscender ();
int GetDescender ();
wchar_t *GetFamilyName ();
int GetGlyphIndex (char* character);
void* GetGlyphIndices (bool useCFFIValue, char* characters);
int GetGlyphIndex (const char* character);
void* GetGlyphIndices (bool useCFFIValue, const char* characters);
void* GetGlyphMetrics (bool useCFFIValue, int index);
int GetHeight ();
int GetNumGlyphs ();