Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
windows.h
1// SPDX-FileCopyrightText: © 2022 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#ifndef __UTILS_WINDOWS_H__
5#define __UTILS_WINDOWS_H__
6
7#ifdef _WOE32
8
9typedef enum WindowsSpecialPath
10{
11 WINDOWS_SPECIAL_PATH_APPDATA,
12 WINDOWS_SPECIAL_PATH_COMMON_PROGRAM_FILES,
13} WindowsSpecialPath;
14
15char *
16windows_get_special_path (WindowsSpecialPath path_type);
17
18#endif // _WOE32
19
20#endif