Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 27 of file ftbdf.c.
{ FT_Error error; const char* encoding = NULL; const char* registry = NULL; error = FT_Err_Invalid_Argument; if ( face ) { FT_Service_BDF service; FT_FACE_FIND_SERVICE( face, service, BDF ); if ( service && service->get_charset_id ) error = service->get_charset_id( face, &encoding, ®istry ); } if ( acharset_encoding ) *acharset_encoding = encoding; if ( acharset_registry ) *acharset_registry = registry; return error; }