Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 91 of file ftcid.c.
{ FT_Error error = FT_Err_Invalid_Argument; FT_UInt c = 0; if ( face ) { FT_Service_CID service; FT_FACE_FIND_SERVICE( face, service, CID ); if ( service && service->get_cid_from_glyph_index ) error = service->get_cid_from_glyph_index( face, glyph_index, &c); } if ( cid ) *cid = c; return error; }