From 57d981f9d765286a85e682f7bee0769d7349e7aa Mon Sep 17 00:00:00 2001 From: "Biastoch, Darian (ADITG/ESM)" Date: Thu, 8 Apr 2021 06:36:18 +0000 Subject: Alternative solutions for json-c dependency json-c dependency was removed from libdlt ('dlt_common') and shifted into 'dlt-control-common'. By this only the command line tools have a dependency on json-c. dlt-control-common is now built as a static library, so that it can be linked against json-c. Command line tools that included only the .c file of dlt-control-common before, are now linked against this static libarary (see console/CMakeLists.txt). Signed-off-by: dbiastoch --- include/dlt/dlt_common.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'include') diff --git a/include/dlt/dlt_common.h b/include/dlt/dlt_common.h index f2ffe50..fc5c18a 100644 --- a/include/dlt/dlt_common.h +++ b/include/dlt/dlt_common.h @@ -930,14 +930,6 @@ DltReturnValue dlt_filter_free(DltFilter *filter, int verbose); * @return negative value if there was an error */ DltReturnValue dlt_filter_load(DltFilter *filter, const char *filename, int verbose); -/** - * Load json filter from file. - * @param filter pointer to structure of organising DLT filter - * @param filename filename to load filters from - * @param verbose if set to true verbose information is printed out. - * @return negative value if there was an error - */ -DltReturnValue dlt_json_filter_load(DltFilter *filter, const char *filename, int verbose); /** * Save filter in space separated list to text file. * @param filter pointer to structure of organising DLT filter @@ -946,14 +938,6 @@ DltReturnValue dlt_json_filter_load(DltFilter *filter, const char *filename, int * @return negative value if there was an error */ DltReturnValue dlt_filter_save(DltFilter *filter, const char *filename, int verbose); -/** - * Save filter in json format to file. - * @param filter pointer to structure of organising DLT filter - * @param filename filename to safe filters into - * @param verbose if set to true verbose information is printed out. - * @return negative value if there was an error - */ -DltReturnValue dlt_json_filter_save(DltFilter *filter, const char *filename, int verbose); /** * Find index of filter in filter list * @param filter pointer to structure of organising DLT filter -- cgit v1.2.1