Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
windows_errors.h
1// SPDX-FileCopyrightText: © 2020 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#ifndef __UTILS_WINDOWS_ERRORS_H__
5#define __UTILS_WINDOWS_ERRORS_H__
6
7#ifdef _WOE32
8
9# include <windows.h>
10
11void
12windows_errors_get_last_error_str (char * str);
13
14#endif // _WOE32
15
16#endif