/usr/include/bse/bsecompat.hh is in libbse-dev 0.7.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
#ifndef __BSE_COMPAT_H__
#define __BSE_COMPAT_H__
#include <bse/bseenums.hh>
G_BEGIN_DECLS
/* --- parameter changes --- */
#define bse_param_spec_genum(name,nick,blurb, genum_type, default_value, hints) \
bse_param_spec_enum (name,nick,blurb, default_value, genum_type, hints)
#define bse_param_spec_freq_simple(name, nick, blurb, hints) \
bse_param_spec_freq (name, nick, blurb, BSE_KAMMER_FREQUENCY, BSE_MIN_OSC_FREQUENCY, BSE_MAX_OSC_FREQUENCY, hints)
#define bse_param_spec_fine_tune(name, nick, blurb) \
sfi_pspec_int (name, nick, blurb, 0, BSE_MIN_FINE_TUNE, BSE_MAX_FINE_TUNE, 10, \
"scale:" SFI_PARAM_STANDARD)
#define bse_param_spec_octave(name, nick, blurb) \
sfi_pspec_int (name, nick, blurb, BSE_KAMMER_OCTAVE, \
BSE_MIN_OCTAVE, BSE_MAX_OCTAVE, 2, SFI_PARAM_STANDARD)
#define bse_pspec_note(name, nick, blurb, default_value, hints) \
sfi_pspec_note (name, nick, blurb, default_value, SFI_MIN_NOTE, SFI_MAX_NOTE, FALSE, hints)
#define bse_pspec_note_simple(name, nick, blurb, hints) \
bse_pspec_note (name, nick, blurb, SFI_KAMMER_NOTE, hints)
/* --- BSE format changes --- */
gchar* bse_compat_rewrite_type_name (BseStorage *storage,
const gchar *type_name);
gchar* bse_compat_rewrite_ichannel_ident (BseStorage *storage,
const gchar *type_name,
const gchar *ichannel_ident);
gchar* bse_compat_rewrite_ochannel_ident (BseStorage *storage,
const gchar *type_name,
const gchar *ochannel_ident);
G_END_DECLS
#endif /* __BSE_COMPAT_H__ */
|