usp10: Avoid LPVOID.

Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Aric Stewart <aric@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Henri Verbeet 2017-03-23 22:49:42 +01:00 committed by Alexandre Julliard
parent 1403087954
commit 213d3588a7
1 changed files with 5 additions and 5 deletions

View File

@ -180,11 +180,11 @@ typedef struct {
BOOL sfnt;
CacheGlyphPage *page[NUM_PAGES];
ABC *widths[GLYPH_MAX / GLYPH_BLOCK_SIZE];
LPVOID GSUB_Table;
LPVOID GDEF_Table;
LPVOID CMAP_Table;
LPVOID CMAP_format12_Table;
LPVOID GPOS_Table;
void *GSUB_Table;
void *GDEF_Table;
void *CMAP_Table;
void *CMAP_format12_Table;
void *GPOS_Table;
BOOL scripts_initialized;
INT script_count;
LoadedScript *scripts;