From 4351c06dee75191183ed997e692bcc4a0a01d52a Mon Sep 17 00:00:00 2001 From: Jamie Bullock Date: Thu, 2 Feb 2006 20:55:27 +0000 Subject: *** empty log message *** svn path=/trunk/externals/postlude/; revision=4538 --- dssi/src/dssi~.h | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 dssi/src/dssi~.h (limited to 'dssi/src/dssi~.h') diff --git a/dssi/src/dssi~.h b/dssi/src/dssi~.h new file mode 100644 index 0000000..8f82772 --- /dev/null +++ b/dssi/src/dssi~.h @@ -0,0 +1,57 @@ +/* dssi~ - A DSSI host for PD + * + * Copyright 2006 Jamie Bullock and others + * + * This file incorporates code from the following sources: + * + * jack-dssi-host (BSD-style license): Copyright 2004 Chris Cannam, Steve Harris and Sean Bolton. + * + * Hexter (GPL license): Copyright (C) 2004 Sean Bolton and others. + * + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +*/ + +#include "m_pd.h" +#include "dssi.h" +#include +#include +#include +#include +#define __USE_GNU /* for strndup */ +#include + +#include /*for exit()*/ +#include /* for fork() */ +#include /* for kill() */ +#include /* for readdir() */ + +#define DX7_VOICE_SIZE_PACKED 128 /*From hexter_types.h by Sean Bolton */ +#define DX7_DUMP_SIZE_BULK 4096+8 + + +#define VERSION 0.8 +#define EVENT_BUFSIZE 1024 +#define OSC_BASE_MAX 1024 +#define TYPE_STRING_SIZE 20 /* Max size of event type string (must be two more bytes than needed) */ +#define DIR_STRING_SIZE 1024 /* Max size of directory string */ +#define ASCII_n 110 +#define ASCII_p 112 +#define ASCII_c 99 +#define ASCII_b 98 + +#define LOADGUI 1 /* FIX: depracate this */ +#define DEBUG 0 + -- cgit v1.2.1