winprefs
v0.3.2
A registry exporter for programmers.
Loading...
Searching...
No Matches
native
debug.c
1
// LCOV_EXCL_START
2
bool
debug_print_enabled =
false
;
3
4
void
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
}
12
DLL_EXPORT
void
set_debug_print_enabled(
bool
enabled) {
13
debug_print_enabled = enabled;
14
}
15
// LCOV_EXCL_STOP
Generated by
1.10.0