diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2004-11-23 15:29:47 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2004-11-23 15:29:47 +0000 |
commit | 9340768f6c7dea7cb7fe348f6fdf52db75ce9d82 (patch) | |
tree | 92af89757cb802aee5b088ce5a5c9ce5b29ebc37 /src/iem16.h |
This commit was generated by cvs2svn to compensate for changes in r2300,svn2git-root
which included commits to RCS files with non-trunk default branches.
svn path=/trunk/externals/iem16/; revision=2301
Diffstat (limited to 'src/iem16.h')
-rw-r--r-- | src/iem16.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/iem16.h b/src/iem16.h new file mode 100644 index 0000000..f9649cd --- /dev/null +++ b/src/iem16.h @@ -0,0 +1,42 @@ +/* ********************************************** */ +/* the IEM16 external */ +/* ********************************************** */ +/* forum::für::umläute */ +/* ********************************************** */ + +/* the IEM16 external is a runtime-library for miller s. puckette's realtime-computermusic-software "pure data" + * therefore you NEED "pure data" to make any use of the IEM16 external + * (except if you want to use the code for other things) + * download "pure data" at + + http://pd.iem.at + ftp://iem.at/pd + + * + * if you are looking for the latest release of the IEM16-external you should have another look at + + ftp://iem.at/pd/Externals/IEM16 + + * + * IEM16 is published under the GNU GeneralPublicLicense, that must be shipped with IEM16. + * if you are using Debian GNU/linux, the GNU-GPL can be found under /usr/share/common-licenses/GPL + * if you still haven't found a copy of the GNU-GPL, have a look at http://www.gnu.org + * + * "pure data" has it's own license, that comes shipped with "pure data". + * + * there are ABSOLUTELY NO WARRANTIES for anything + */ + +#ifndef INCLUDE_IEM16_H__ +#define INCLUDE_IEM16_H__ + +#include "m_pd.h" + +typedef short t_iem16_16bit; + +#define IEM16_SCALE_UP (32767) +#define IEM16_SCALE_DOWN (1./32767) + +#define VERSION "0.1" + +#endif |