| | 
  FT_EXPORT( FT_Error )
  FT_Get_BDF_Charset_ID( FT_Face       face,
                         const char*  *acharset_encoding,
                         const char*  *acharset_registry );
 | 
 
 | Retrieves a BDF font character set identity, according to the BDF specification. | 
 
 | input |  | 
| face | A handle to the input face. |  | 
 | output |  | 
| acharset_encoding | Charset encoding, as a C string, owned by the face. |  | acharset_registry | Charset registry, as a C string, owned by the face. |  | 
 | return |  | FreeType error code. 0 means success. | 
 | note |  | This function only works with BDF faces, returning an error otherwise. | 
 |