Files
2026-01-16 23:50:42 -08:00

27 lines
393 B
C

#pragma once
#include <windows.h>
#include <stdio.h>
#include <structs.h>
#include <time.h>
// max size of the gadget array
#define GADGETS_MAX 16
#define DEBUG
// Conditional debug
#ifdef DEBUG
#define DEBUG_PRINT(...) printf(__VA_ARGS__)
#define WDEBUG_PRINT(...) wprintf(__VA_ARGS__)
#else
#define DEBUG_PRINT(...) do {} while (0)
#define WDEBUG_PRINT(...) do {} while (0)
#endif