mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 20:43:15 +00:00
7405f541e8
The needed headers are now included in the repo, which for these libraries is possible thanks to a stable ABI (at least on Windows, the other platforms still need to be checked but the headers only add, never remove or change existing content.) The big advantage of this setup is that it allows building the project on Windows without any necessary setup - all that needs to be provided is the DLLs from the binary package. This still requires some fixes for macOS and Linux. On MacOS the proper library names are missing and the ones for Linux are not verified. Both platforms should work, though, if the dynamic loading is disabled.
23 lines
719 B
C
23 lines
719 B
C
#ifndef SNDDEF_H
|
|
#define SNDDEF_H
|
|
|
|
#if defined HAVE_SNDFILE && defined DYN_SNDFILE
|
|
|
|
#define DEFINE_ENTRY(type, name) static TReqProc<SndFileModule, type> p_##name{#name};
|
|
DEFINE_ENTRY(int (*)(SNDFILE *sndfile), sf_close)
|
|
DEFINE_ENTRY(SNDFILE* (*)(SF_VIRTUAL_IO *sfvirtual, int mode, SF_INFO *sfinfo, void *user_data), sf_open_virtual)
|
|
DEFINE_ENTRY(sf_count_t (*)(SNDFILE *sndfile, float *ptr, sf_count_t frames), sf_readf_float)
|
|
DEFINE_ENTRY(sf_count_t (*)(SNDFILE *sndfile, sf_count_t frames, int whence), sf_seek)
|
|
#undef DEFINE_ENTRY
|
|
|
|
#ifndef IN_IDE_PARSER
|
|
#define sf_close p_sf_close
|
|
#define sf_open_virtual p_sf_open_virtual
|
|
#define sf_readf_float p_sf_readf_float
|
|
#define sf_seek p_sf_seek
|
|
#endif
|
|
|
|
#endif
|
|
#endif
|
|
|
|
|