summaryrefslogtreecommitdiff
path: root/src/basic/format-table.h
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2018-08-23 08:20:10 +0200
committerSven Eden <yamakuzure@gmx.net>2018-08-24 16:47:08 +0200
commitae13c1d48a78a6273e403f690ed7d9538a31070a (patch)
treef2c776ad0dd22d5d047708a5c4bb11863654e0d1 /src/basic/format-table.h
parent8e3c2431d298404c67115ab9781e3f4e289a01cd (diff)
Prep v239: Mask all unneeded functions in the new format-table.[hc] files.
Diffstat (limited to 'src/basic/format-table.h')
-rw-r--r--src/basic/format-table.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/basic/format-table.h b/src/basic/format-table.h
index c9185c567..b8f068e99 100644
--- a/src/basic/format-table.h
+++ b/src/basic/format-table.h
@@ -1,11 +1,11 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
-//#include <stdbool.h>
-//#include <stdio.h>
-//#include <sys/types.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <sys/types.h>
-//#include "macro.h"
+#include "macro.h"
typedef enum TableDataType {
TABLE_EMPTY,
@@ -34,14 +34,18 @@ static inline int table_add_cell(Table *t, TableCell **ret_cell, TableDataType t
return table_add_cell_full(t, ret_cell, type, data, (size_t) -1, (size_t) -1, (unsigned) -1, (unsigned) -1, (unsigned) -1);
}
+#if 0 /// UNNEEDED by elogind
int table_dup_cell(Table *t, TableCell *cell);
int table_set_minimum_width(Table *t, TableCell *cell, size_t minimum_width);
int table_set_maximum_width(Table *t, TableCell *cell, size_t maximum_width);
int table_set_weight(Table *t, TableCell *cell, unsigned weight);
+#endif // 0
int table_set_align_percent(Table *t, TableCell *cell, unsigned percent);
+#if 0 /// UNNEEDED by elogind
int table_set_ellipsize_percent(Table *t, TableCell *cell, unsigned percent);
int table_set_color(Table *t, TableCell *cell, const char *color);
+#endif // 0
int table_add_many_internal(Table *t, TableDataType first_type, ...);
#define table_add_many(t, ...) table_add_many_internal(t, __VA_ARGS__, _TABLE_DATA_TYPE_MAX)
@@ -59,4 +63,6 @@ static inline TableCell* TABLE_HEADER_CELL(size_t i) {
}
size_t table_get_rows(Table *t);
+#if 0 /// UNNEEDED by elogind
size_t table_get_columns(Table *t);
+#endif // 0