File: string-sizes.h

package info (click to toggle)
lsp-plugins 1.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 91,856 kB
  • sloc: cpp: 427,831; xml: 57,779; makefile: 9,961; php: 1,005; sh: 18
file content (21 lines) | stat: -rw-r--r-- 461 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#ifdef __cplusplus
extern "C" {
#endif

enum {
   // String capacity for names that can be displayed to the user.
   CLAP_NAME_SIZE = 256,

   // String capacity for describing a path, like a parameter in a module hierarchy or path within a
   // set of nested track groups.
   //
   // This is not suited for describing a file path on the disk, as NTFS allows up to 32K long
   // paths.
   CLAP_PATH_SIZE = 1024,
};

#ifdef __cplusplus
}
#endif