添加系统信息查看器代码

This commit is contained in:
zsyg
2025-06-28 11:58:36 +08:00
committed by GitHub
parent dcecf58f23
commit 021e89e3a4
24 changed files with 835 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#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