empty implementation

This commit is contained in:
Vincent Wei
2019-03-22 18:42:08 +08:00
parent 2278c4975c
commit 1820e74b77
2 changed files with 21 additions and 0 deletions
+15
View File
@@ -332,5 +332,20 @@ void __mg_glyph_item_get_logical_widths (const GlyphItem *glyph_item,
}
}
void __mg_shape_utf8 (const char* text, int len,
const TEXTRUN* trun, GLYPHSTRING* gs)
{
}
void __mg_text_run_free(TEXTRUN* trun)
{
}
void __mg_glyph_item_letter_space (const GlyphItem* glyph_item,
const Uchar32* ucs, const BreakOppo* bos, int letter_spacing)
{
}
#endif /* _MGCHARSET_UNICODE */
+6
View File
@@ -664,6 +664,12 @@ RGBCOLOR __mg_textruns_get_text_color(const TEXTRUNSINFO* runinfo, int index)
return runinfo->attrs.value;
}
TEXTRUN* __mg_textruns_get_by_offset(const TEXTRUNSINFO* runinfo,
int offset, int *start_index)
{
return NULL;
}
BOOL GUIAPI SetTextColorInTextRuns(TEXTRUNSINFO* runinfo,
int start_index, int length, RGBCOLOR color)
{