mirror of
https://github.com/milkdrop2077/MilkDrop3.git
synced 2025-12-01 12:04:52 +00:00
11 lines
249 B
C
11 lines
249 B
C
// log.h
|
|
|
|
#include <stdio.h>
|
|
#include <windows.h>
|
|
|
|
//#define LOG(format, ...) wprintf(format L"\n", __VA_ARGS__)
|
|
//#define ERR(format, ...) LOG(L"Error: " format, __VA_ARGS__)
|
|
|
|
void LOG(LPCWSTR format, ...);
|
|
void ERR(LPCWSTR format, ...);
|