From 1a6be58b3ff7e0dc13d66a477acd5bef45d0998c Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sun, 22 Jun 2014 16:32:27 +0200 Subject: [PATCH] ABI: Adjust to last-minute table printer changes --- maint/libucw.abi | 18 ++++++++++++++++++ ucw/table.h | 19 ++++++++++++++++++- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/maint/libucw.abi b/maint/libucw.abi index 14d7666a..7c469ebd 100644 --- a/maint/libucw.abi +++ b/maint/libucw.abi @@ -516,16 +516,34 @@ table_col_fbend table_set_formatter table_fmt_human_readable table_fmt_machine_readable +table_fmt_blockline table_set_option table_set_option_value table_set_gary_options table_col_int +table_col_int_fmt +table_col_int_name table_col_uint +table_col_uint_fmt +table_col_uint_name table_col_double +table_col_double_fmt +table_col_double_name table_col_str +table_col_str_fmt +table_col_str_name table_col_intmax +table_col_intmax_fmt +table_col_intmax_name +table_col_s64 +table_col_s64_fmt +table_col_s64_name table_col_uintmax +table_col_uintmax_fmt +table_col_uintmax_name table_col_u64 +table_col_u64_fmt +table_col_u64_name table_col_bool table_col_bool_name table_col_bool_fmt diff --git a/ucw/table.h b/ucw/table.h index 6bec5652..9ce8718d 100644 --- a/ucw/table.h +++ b/ucw/table.h @@ -25,18 +25,35 @@ #define table_col_bool_fmt ucw_table_col_bool_fmt #define table_col_bool_name ucw_table_col_bool_name #define table_col_double ucw_table_col_double +#define table_col_double_fmt ucw_table_col_double_fmt +#define table_col_double_name ucw_table_col_double_name #define table_col_fbend ucw_table_col_fbend #define table_col_fbstart ucw_table_col_fbstart #define table_col_int ucw_table_col_int +#define table_col_int_fmt ucw_table_col_int_fmt +#define table_col_int_name ucw_table_col_int_name #define table_col_intmax ucw_table_col_intmax +#define table_col_intmax_fmt ucw_table_col_intmax_fmt +#define table_col_intmax_name ucw_table_col_intmax_name #define table_col_printf ucw_table_col_printf +#define table_col_s64 ucw_table_col_s64 +#define table_col_s64_fmt ucw_table_col_s64_fmt +#define table_col_s64_name ucw_table_col_s64_name #define table_col_str ucw_table_col_str +#define table_col_str_fmt ucw_table_col_str_fmt +#define table_col_str_name ucw_table_col_str_name #define table_col_u64 ucw_table_col_u64 -#define table_col_s64 ucw_table_col_s64 +#define table_col_u64_fmt ucw_table_col_u64_fmt +#define table_col_u64_name ucw_table_col_u64_name #define table_col_uint ucw_table_col_uint +#define table_col_uint_fmt ucw_table_col_uint_fmt +#define table_col_uint_name ucw_table_col_uint_name #define table_col_uintmax ucw_table_col_uintmax +#define table_col_uintmax_fmt ucw_table_col_uintmax_fmt +#define table_col_uintmax_name ucw_table_col_uintmax_name #define table_end ucw_table_end #define table_end_row ucw_table_end_row +#define table_fmt_blockline ucw_table_fmt_blockline #define table_fmt_human_readable ucw_table_fmt_human_readable #define table_fmt_machine_readable ucw_table_fmt_machine_readable #define table_get_col_idx ucw_table_get_col_idx -- 2.39.5