Add HB_CODEPOINT_INVALID

Fixes https://github.com/harfbuzz/harfbuzz/issues/4262
This commit is contained in:
Behdad Esfahbod 2023-06-03 14:56:47 -06:00
parent efefec13cc
commit c3e7f45166
4 changed files with 13 additions and 2 deletions

View file

@ -151,6 +151,7 @@ hb_variation_from_string
hb_variation_to_string
hb_bool_t
hb_codepoint_t
HB_CODEPOINT_INVALID
hb_destroy_func_t
hb_direction_t
hb_language_t

View file

@ -104,6 +104,16 @@ typedef int hb_bool_t;
*
**/
typedef uint32_t hb_codepoint_t;
/**
* HB_SET_VALUE_INVALID:
*
* Unused #hb_codepoint_t value.
*
* XSince: REPLACEME
*/
#define HB_CODEPOINT_INVALID ((hb_codepoint_t) -1)
/**
* hb_position_t:
*

View file

@ -44,7 +44,7 @@ HB_BEGIN_DECLS
*
* Since: 1.7.7
*/
#define HB_MAP_VALUE_INVALID ((hb_codepoint_t) -1)
#define HB_MAP_VALUE_INVALID HB_CODEPOINT_INVALID
/**
* hb_map_t:

View file

@ -43,7 +43,7 @@ HB_BEGIN_DECLS
*
* Since: 0.9.21
*/
#define HB_SET_VALUE_INVALID ((hb_codepoint_t) -1)
#define HB_SET_VALUE_INVALID HB_CODEPOINT_INVALID
/**
* hb_set_t: