/usr/include/bse/bseglue.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 | // Licensed GNU LGPL v2.1 or later: http://www.gnu.org/licenses/lgpl.html
#ifndef __BSE_GLUE_H__
#define __BSE_GLUE_H__
#include <bse/bsetype.hh>
G_BEGIN_DECLS
/* FIXME: creation of a new context source should be done
* by a janitor constructor
*/
SfiGlueContext* bse_glue_context_intern (const gchar *user);
/* Construct a new #SfiRec from a boxed value. */
typedef SfiRec* (*BseGlueBoxedToRec) (gpointer boxed);
/* Construct a new #SfiSeq from a boxed value. */
typedef SfiSeq* (*BseGlueBoxedToSeq) (gpointer boxed);
GType bse_glue_pspec_get_original_enum (GParamSpec *pspec);
guint bse_glue_enum_index (GType enum_type,
gint enum_value);
GValue* bse_glue_boxed_to_value (GType boxed_type,
gpointer boxed);
/* convert value sto/from SFI serializable types */
GValue* bse_value_to_sfi (const GValue *value);
GValue* bse_value_from_sfi (const GValue *value,
GParamSpec *pspec);
G_END_DECLS
#endif /* __BSE_GLUE_H__ */
/* vim:set ts=8 sts=2 sw=2: */
|