dwrite: Make free_glyph_outline() static.
This commit is contained in:
parent
25faba157e
commit
3b87dbe062
|
@ -142,7 +142,6 @@ struct glyph_outline {
|
|||
};
|
||||
|
||||
extern HRESULT new_glyph_outline(UINT32,struct glyph_outline**) DECLSPEC_HIDDEN;
|
||||
extern void free_glyph_outline(struct glyph_outline*) DECLSPEC_HIDDEN;
|
||||
|
||||
/* FreeType integration */
|
||||
extern BOOL init_freetype(void) DECLSPEC_HIDDEN;
|
||||
|
|
|
@ -451,7 +451,7 @@ HRESULT new_glyph_outline(UINT32 count, struct glyph_outline **ret)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
void free_glyph_outline(struct glyph_outline *outline)
|
||||
static void free_glyph_outline(struct glyph_outline *outline)
|
||||
{
|
||||
heap_free(outline->points);
|
||||
heap_free(outline->tags);
|
||||
|
|
Loading…
Reference in New Issue