dwrite: Make free_glyph_outline() static.

This commit is contained in:
Francois Gouget 2015-01-05 19:34:07 +01:00 committed by Alexandre Julliard
parent 25faba157e
commit 3b87dbe062
2 changed files with 1 additions and 2 deletions

View File

@ -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;

View File

@ -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);