winprefs v0.3.2
A registry exporter for programmers.
Loading...
Searching...
No Matches
debug.c
1// LCOV_EXCL_START
2bool debug_print_enabled = false;
3
4void debug_print(const wchar_t *format, ...) {
5 if (debug_print_enabled) {
6 va_list args;
7 va_start(args, format);
8 vfwprintf(stderr, format, args);
9 va_end(args);
10 }
11}
12DLL_EXPORT void set_debug_print_enabled(bool enabled) {
13 debug_print_enabled = enabled;
14}
15// LCOV_EXCL_STOP