Files
MilkDrop3/code/audio/log.h
2023-04-17 19:25:26 -04:00

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, ...);