Initial commit
This commit is contained in:
commit
56f7cd1875
105 changed files with 22109 additions and 0 deletions
21
tests/clap/string-sizes.h
Normal file
21
tests/clap/string-sizes.h
Normal file
|
|
@ -0,0 +1,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
|
||||
Loading…
Add table
Add a link
Reference in a new issue