mirror of
https://github.com/zs-yg/kortapp-z.git
synced 2025-12-06 16:10:42 +08:00
16 lines
227 B
C
16 lines
227 B
C
#ifndef LOGGING_H
|
|
#define LOGGING_H
|
|
|
|
#include <windows.h>
|
|
|
|
typedef enum {
|
|
LOG_DEBUG,
|
|
LOG_INFO,
|
|
LOG_WARNING,
|
|
LOG_ERROR
|
|
} LogLevel;
|
|
|
|
void log_message(LogLevel level, const char* format, ...);
|
|
|
|
#endif // LOGGING_H
|