winprefs v0.3.2
A registry exporter for programmers.
Loading...
Searching...
No Matches
debug.h
Go to the documentation of this file.
1
2// LCOV_EXCL_START
3#ifndef DEBUG_H
4#define DEBUG_H
5
6#include "macros.h"
7
8extern bool debug_print_enabled;
9
11
14void debug_print(const wchar_t *format, ...);
15
17
20DLL_EXPORT void set_debug_print_enabled(bool enabled);
21
22#endif
23// LCOV_EXCL_STOP
DLL_EXPORT void set_debug_print_enabled(bool enabled)
Enable or disable debug printing.
Definition debug.c:12
void debug_print(const wchar_t *format,...)
Print only when debug logging is enabled.
Definition debug.c:4