comparison DPF-Prymula-audioplugins/dpf/distrho/src/clap/string-sizes.h @ 3:84e66ea83026

DPF-Prymula-audioplugins-0.231015-2
author prymula <prymula76@outlook.com>
date Mon, 16 Oct 2023 21:53:34 +0200
parents
children
comparison
equal deleted inserted replaced
2:cf2cb71d31dd 3:84e66ea83026
1 #pragma once
2
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6
7 enum {
8 // String capacity for names that can be displayed to the user.
9 CLAP_NAME_SIZE = 256,
10
11 // String capacity for describing a path, like a parameter in a module hierarchy or path within a
12 // set of nested track groups.
13 //
14 // This is not suited for describing a file path on the disk, as NTFS allows up to 32K long
15 // paths.
16 CLAP_PATH_SIZE = 1024,
17 };
18
19 #ifdef __cplusplus
20 }
21 #endif