--- plugins/gregoriotex/gregoriotex-write.c | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-)
diff --git a/plugins/gregoriotex/gregoriotex-write.c b/plugins/gregoriotex/gregoriotex-write.c index ec2c6fa..81c351b 100644 --- a/plugins/gregoriotex/gregoriotex-write.c +++ b/plugins/gregoriotex/gregoriotex-write.c @@ -27,6 +27,21 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <wchar.h> #include <string.h> #include "gregoriotex.h" +#include "plugin.h" + +DECLARE_PLUGIN(gregoriotex) +{ + .id = "gtex", + .name = "gregoriotex", + .description = "GregorioTeX output plugin", + .author = "Elie Roux <[EMAIL PROTECTED]>", + + .file_extension = "tex", + + .type = GREGORIO_PLUGIN_OUTPUT, + + .write = write_score +}; void write_score (FILE * f, gregorio_score * score) -- 1.5.6.5 _______________________________________________ Gregorio-devel mailing list [email protected] https://mail.gna.org/listinfo/gregorio-devel
