mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-11 11:38:41 +01:00
20 lines
645 B
C
20 lines
645 B
C
/*
|
|
* 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 */
|