Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 36 of file ftgxval.c.
{ FT_Service_GXvalidate service; FT_Error error; if ( !face ) { error = FT_Err_Invalid_Face_Handle; goto Exit; } if ( tables == NULL ) { error = FT_Err_Invalid_Argument; goto Exit; } FT_FACE_FIND_GLOBAL_SERVICE( face, service, GX_VALIDATE ); if ( service ) error = service->validate( face, validation_flags, tables, table_length ); else error = FT_Err_Unimplemented_Feature; Exit: return error; }