[truetype] Signature fixes.

This commit is contained in:
Werner Lemberg 2023-05-07 08:34:32 +02:00
parent e05c056220
commit 95d635eab1
2 changed files with 4 additions and 2 deletions

View File

@ -7670,8 +7670,10 @@
/* documentation is in ttinterp.h */
FT_EXPORT_DEF( FT_Error )
TT_RunIns( TT_ExecContext exc )
TT_RunIns( void* exec )
{
TT_ExecContext exc = (TT_ExecContext)exec;
FT_ULong ins_counter = 0; /* executed instructions counter */
FT_ULong num_twilight_points;
FT_UShort i;

View File

@ -528,7 +528,7 @@ FT_BEGIN_HEADER
* invoked by the TrueType debugger.
*/
FT_EXPORT( FT_Error )
TT_RunIns( TT_ExecContext exec );
TT_RunIns( void* exec );
FT_END_HEADER