sintonia/library/ecasound/ecatools/ecicpp_helpers.h
Paul Baranowski 6a39e4f5f5 Removed the Debian directory.
Renamed directory "dev" to "dev_tools".

Replaced the ecasound-2.7.2 with a new download of ecasound.  The reason is
that the previous ecasound directory had all the Makefiles checked in with
hardcoded paths from Naomi's computer.  This prevented anyone else from
being able to build.  I copied over the modified version of ecacontrol.py.
2011-03-09 18:20:34 -05:00

14 lines
567 B
C++

#ifndef INCLUDED_ECICPP_HELPERS_H
#define INCLUDED_ECICPP_HELPERS_H
using std::string;
class ECA_CONTROL_INTERFACE;
int ecicpp_add_file_input(ECA_CONTROL_INTERFACE* eci, const string& filename, string* format);
int ecicpp_add_input(ECA_CONTROL_INTERFACE* eci, const string& input, string* format);
int ecicpp_add_output(ECA_CONTROL_INTERFACE* eci, const string& output, const string& format);
int ecicpp_connect_chainsetup(ECA_CONTROL_INTERFACE* eci, const string& csname);
int ecicpp_format_channels(const string& format);
#endif /* INCLUDED_ECICPP_HELPERS_H */