Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
lv2_log.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: © 2019 Alexandros Theodotou <alex@zrythm.org>
3 *
4 * SPDX-License-Identifier: LicenseRef-ZrythmLicense
5 */
6
13#include <lv2/log/log.h>
14
25void
26lv2_log_set_printf_funcs (LV2_Log_Log * log);
27
28int
29lv2_log_vprintf (
30 LV2_Log_Handle handle,
31 LV2_URID type,
32 const char * fmt,
33 va_list ap);
34
35int
36lv2_log_printf (LV2_Log_Handle handle, LV2_URID type, const char * fmt, ...);
37
void lv2_log_set_printf_funcs(LV2_Log_Log *log)
Needed because we can't set them directly when gi18n.h is included.