bindbc.hb.bind.unicode

Undocumented in source.

Members

Aliases

hb_unicode_combining_class_func_t
alias hb_unicode_combining_class_func_t = hb_unicode_combining_class_t function(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_combining_class_t
alias hb_unicode_combining_class_t = int
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_compose_func_t
alias hb_unicode_compose_func_t = hb_bool_t function(hb_unicode_funcs_t* ufuncs, hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t* ab, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_decompose_func_t
alias hb_unicode_decompose_func_t = hb_bool_t function(hb_unicode_funcs_t* ufuncs, hb_codepoint_t ab, hb_codepoint_t* a, hb_codepoint_t* b, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_general_category_func_t
alias hb_unicode_general_category_func_t = hb_unicode_general_category_t function(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_general_category_t
alias hb_unicode_general_category_t = int
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_mirroring_func_t
alias hb_unicode_mirroring_func_t = hb_codepoint_t function(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_script_func_t
alias hb_unicode_script_func_t = hb_script_t function(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode, void* user_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

HB_UNICODE_COMBINING_CLASS_NOT_REORDERED
anonymousenum HB_UNICODE_COMBINING_CLASS_NOT_REORDERED
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
HB_UNICODE_GENERAL_CATEGORY_CONTROL
anonymousenum HB_UNICODE_GENERAL_CATEGORY_CONTROL
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

hb_unicode_combining_class
hb_unicode_combining_class_t hb_unicode_combining_class(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode)
hb_unicode_compose
hb_bool_t hb_unicode_compose(hb_unicode_funcs_t* ufuncs, hb_codepoint_t a, hb_codepoint_t b, hb_codepoint_t* ab)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_decompose
hb_bool_t hb_unicode_decompose(hb_unicode_funcs_t* ufuncs, hb_codepoint_t ab, hb_codepoint_t* a, hb_codepoint_t* b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_create
hb_unicode_funcs_t* hb_unicode_funcs_create(hb_unicode_funcs_t* parent)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_destroy
void hb_unicode_funcs_destroy(hb_unicode_funcs_t* ufuncs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_default
hb_unicode_funcs_t* hb_unicode_funcs_get_default()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_empty
hb_unicode_funcs_t* hb_unicode_funcs_get_empty()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_parent
hb_unicode_funcs_t* hb_unicode_funcs_get_parent(hb_unicode_funcs_t* ufuncs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_user_data
void* hb_unicode_funcs_get_user_data(hb_unicode_funcs_t* ufuncs, hb_user_data_key_t* key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_is_immutable
hb_bool_t hb_unicode_funcs_is_immutable(hb_unicode_funcs_t* ufuncs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_make_immutable
void hb_unicode_funcs_make_immutable(hb_unicode_funcs_t* ufuncs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_reference
hb_unicode_funcs_t* hb_unicode_funcs_reference(hb_unicode_funcs_t* ufuncs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_combining_class_func
void hb_unicode_funcs_set_combining_class_func(hb_unicode_funcs_t* ufuncs, hb_unicode_combining_class_func_t func, void* user_data, hb_destroy_func_t destroy)
hb_unicode_funcs_set_compose_func
void hb_unicode_funcs_set_compose_func(hb_unicode_funcs_t* ufuncs, hb_unicode_compose_func_t func, void* user_data, hb_destroy_func_t destroy)
hb_unicode_funcs_set_decompose_func
void hb_unicode_funcs_set_decompose_func(hb_unicode_funcs_t* ufuncs, hb_unicode_decompose_func_t func, void* user_data, hb_destroy_func_t destroy)
hb_unicode_funcs_set_general_category_func
void hb_unicode_funcs_set_general_category_func(hb_unicode_funcs_t* ufuncs, hb_unicode_general_category_func_t func, void* user_data, hb_destroy_func_t destroy)
hb_unicode_funcs_set_mirroring_func
void hb_unicode_funcs_set_mirroring_func(hb_unicode_funcs_t* ufuncs, hb_unicode_mirroring_func_t func, void* user_data, hb_destroy_func_t destroy)
hb_unicode_funcs_set_script_func
void hb_unicode_funcs_set_script_func(hb_unicode_funcs_t* ufuncs, hb_unicode_script_func_t func, void* user_data, hb_destroy_func_t destroy)
hb_unicode_funcs_set_user_data
hb_bool_t hb_unicode_funcs_set_user_data(hb_unicode_funcs_t* ufuncs, hb_user_data_key_t* key, void* data, hb_destroy_func_t destroy, hb_bool_t replace)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_general_category
hb_unicode_general_category_t hb_unicode_general_category(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode)
hb_unicode_mirroring
hb_codepoint_t hb_unicode_mirroring(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode)
hb_unicode_script
hb_script_t hb_unicode_script(hb_unicode_funcs_t* ufuncs, hb_codepoint_t unicode)

Manifest constants

HB_UNICODE_MAX
enum HB_UNICODE_MAX;

HB_UNICODE_MAX

Static variables

hb_unicode_combining_class
fp_hb_unicode_combining_class hb_unicode_combining_class;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_compose
fp_hb_unicode_compose hb_unicode_compose;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_decompose
fp_hb_unicode_decompose hb_unicode_decompose;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_create
fp_hb_unicode_funcs_create hb_unicode_funcs_create;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_destroy
fp_hb_unicode_funcs_destroy hb_unicode_funcs_destroy;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_default
fp_hb_unicode_funcs_get_default hb_unicode_funcs_get_default;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_empty
fp_hb_unicode_funcs_get_empty hb_unicode_funcs_get_empty;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_parent
fp_hb_unicode_funcs_get_parent hb_unicode_funcs_get_parent;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_get_user_data
fp_hb_unicode_funcs_get_user_data hb_unicode_funcs_get_user_data;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_is_immutable
fp_hb_unicode_funcs_is_immutable hb_unicode_funcs_is_immutable;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_make_immutable
fp_hb_unicode_funcs_make_immutable hb_unicode_funcs_make_immutable;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_reference
fp_hb_unicode_funcs_reference hb_unicode_funcs_reference;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_combining_class_func
fp_hb_unicode_funcs_set_combining_class_func hb_unicode_funcs_set_combining_class_func;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_compose_func
fp_hb_unicode_funcs_set_compose_func hb_unicode_funcs_set_compose_func;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_decompose_func
fp_hb_unicode_funcs_set_decompose_func hb_unicode_funcs_set_decompose_func;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_general_category_func
fp_hb_unicode_funcs_set_general_category_func hb_unicode_funcs_set_general_category_func;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_mirroring_func
fp_hb_unicode_funcs_set_mirroring_func hb_unicode_funcs_set_mirroring_func;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_script_func
fp_hb_unicode_funcs_set_script_func hb_unicode_funcs_set_script_func;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_funcs_set_user_data
fp_hb_unicode_funcs_set_user_data hb_unicode_funcs_set_user_data;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_general_category
fp_hb_unicode_general_category hb_unicode_general_category;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_mirroring
fp_hb_unicode_mirroring hb_unicode_mirroring;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
hb_unicode_script
fp_hb_unicode_script hb_unicode_script;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

hb_unicode_funcs_t
struct hb_unicode_funcs_t
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta