/* * Copyright (c) 2023 Genexis B.V. All rights reserved. * * This Software and its content are protected by the Dutch Copyright Act * ('Auteurswet'). All and any copying and distribution of the software * and its content without authorization by Genexis B.V. is * prohibited. The prohibition includes every form of reproduction and * distribution. * */ #ifndef DMLOG_H #define DMLOG_H void dmlog_init(const char *name, int log_level); void dmlog_info(const char *fmt, ...); void dmlog_warn(const char *fmt, ...); void dmlog_error(const char *fmt, ...); void dmlog_debug(const char *fmt, ...); void dmlog_close(); #endif /* DMLOG_H */