mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
Add HB_CODEPOINT_INVALID
Fixes https://github.com/harfbuzz/harfbuzz/issues/4262
This commit is contained in:
parent
efefec13cc
commit
c3e7f45166
4 changed files with 13 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
*
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue