/* scoreops.h * headers for functions dealing with the whole score * for Denemo, a gtk+ frontend to GNU Lilypond * (c) 2000-2005 Matthew Hiller */ #include #ifndef SCOREOPS_H #define SCOREOPS_H DenemoScore * new_score(); void init_score (DenemoScore *si); void free_score (DenemoScore *si); /* get rid of the lily parse tree of a score and its window; hide its status bar */ void abandon_lily_tree(DenemoGUI *gui); LilypondHeaderInfo *new_mudela_header(); DenemoScoreConfig * new_score_config(); #endif