1
0
mirror of https://github.com/facebook/zstd.git synced 2026-04-26 23:25:54 +02:00
Files

36 lines
887 B
Plaintext
Raw Permalink Normal View History

2021-12-23 14:57:16 -05:00
module libzstd [extern_c] {
header "zstd.h"
export *
config_macros [exhaustive] \
/* zstd.h */ \
2021-12-23 14:57:16 -05:00
ZSTD_STATIC_LINKING_ONLY, \
ZSTDLIB_VISIBILITY, \
2021-12-23 14:57:16 -05:00
ZSTDLIB_VISIBLE, \
ZSTDLIB_HIDDEN, \
2021-12-23 14:57:16 -05:00
ZSTD_DLL_EXPORT, \
ZSTDLIB_STATIC_API, \
ZSTD_DISABLE_DEPRECATE_WARNINGS, \
ZSTD_CLEVEL_DEFAULT, \
/* zdict.h */ \
ZDICT_STATIC_LINKING_ONLY, \
ZDICTLIB_VISIBLE, \
ZDICTLIB_HIDDEN, \
2021-12-23 14:57:16 -05:00
ZDICTLIB_VISIBILITY, \
ZDICTLIB_STATIC_API, \
2021-12-23 14:57:16 -05:00
ZDICT_DISABLE_DEPRECATE_WARNINGS, \
/* zstd_errors.h */ \
ZSTDERRORLIB_VISIBLE, \
ZSTDERRORLIB_HIDDEN, \
ZSTDERRORLIB_VISIBILITY
2021-12-23 14:57:16 -05:00
module dictbuilder [extern_c] {
header "zdict.h"
export *
}
module errors [extern_c] {
header "zstd_errors.h"
export *
}
}