From: Behdad Esfahbod Date: Fri, 15 Apr 2011 23:12:01 +0000 (-0400) Subject: Mark internal buffer variables private X-Git-Tag: 2.0_alpha~7^2~363 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b54cd07b2623b68171e00179a9dc3ecbea7aa6a1;p=apps%2Fcore%2Fpreloaded%2Fvideo-player.git Mark internal buffer variables private --- diff --git a/src/hb-buffer.h b/src/hb-buffer.h index 2151a45..293ec82 100644 --- a/src/hb-buffer.h +++ b/src/hb-buffer.h @@ -42,6 +42,8 @@ typedef struct _hb_glyph_info_t { hb_codepoint_t codepoint; hb_mask_t mask; uint32_t cluster; + + /*< private >*/ hb_var_int_t var1; hb_var_int_t var2; } hb_glyph_info_t; @@ -51,6 +53,8 @@ typedef struct _hb_glyph_position_t { hb_position_t y_advance; hb_position_t x_offset; hb_position_t y_offset; + + /*< private >*/ hb_var_int_t var; } hb_glyph_position_t;