Hide internal symbols
This commit is contained in:
parent
8951fc2c82
commit
eee8598d75
|
@ -80,10 +80,10 @@ struct _hb_ot_layout_context_t
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
void
|
HB_INTERNAL void
|
||||||
_hb_ot_layout_init (hb_face_t *face);
|
_hb_ot_layout_init (hb_face_t *face);
|
||||||
|
|
||||||
void
|
HB_INTERNAL void
|
||||||
_hb_ot_layout_fini (hb_face_t *face);
|
_hb_ot_layout_fini (hb_face_t *face);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -66,10 +66,6 @@
|
||||||
#undef MAX
|
#undef MAX
|
||||||
#define MAX(a,b) ((a) > (b) ? (a) : (b))
|
#define MAX(a,b) ((a) > (b) ? (a) : (b))
|
||||||
|
|
||||||
#ifndef HB_INTERNAL
|
|
||||||
# define HB_INTERNAL extern
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#undef ARRAY_LENGTH
|
#undef ARRAY_LENGTH
|
||||||
#define ARRAY_LENGTH(__array) ((signed int) (sizeof (__array) / sizeof (__array[0])))
|
#define ARRAY_LENGTH(__array) ((signed int) (sizeof (__array) / sizeof (__array[0])))
|
||||||
|
|
||||||
|
@ -111,6 +107,10 @@
|
||||||
#define HB_UNUSED
|
#define HB_UNUSED
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef HB_INTERNAL
|
||||||
|
# define HB_INTERNAL extern __attribute__((__visibility__("hidden")))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if (defined(__WIN32__) && !defined(__WINE__)) || defined(_MSC_VER)
|
#if (defined(__WIN32__) && !defined(__WINE__)) || defined(_MSC_VER)
|
||||||
#define snprintf _snprintf
|
#define snprintf _snprintf
|
||||||
|
|
Loading…
Reference in New Issue