From 2b60d55c919e7588f5aff15936e83c300b3660bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Tue, 22 Mar 2005 20:58:25 +0000 Subject: zexy-2.0: - use of abstractions for objects that allow it - some objects are build both as externals and abstractions (as slower fallbacks) - code-layout is now 1:1 c-file<->object (this should allow for building of zexy as a collection of externals instead as a big library) - matrix-objects have moved to iemmatrix !! svn path=/trunk/externals/zexy/; revision=2641 --- src/z_sigbin.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'src/z_sigbin.c') diff --git a/src/z_sigbin.c b/src/z_sigbin.c index b1023e7..dc4932e 100644 --- a/src/z_sigbin.c +++ b/src/z_sigbin.c @@ -1,3 +1,19 @@ +/****************************************************** + * + * zexy - implementation file + * + * copyleft (c) IOhannes m zmölnig + * + * 1999:forum::für::umläute:2004 + * + * institute of electronic music and acoustics (iem) + * + ****************************************************** + * + * license: GNU General Public License v.2 + * + ******************************************************/ + /* finally :: some of the missing binops for signals :: abs~, sgn~, >~, <~, ==~, &&~, ||~ @@ -9,8 +25,6 @@ #ifdef NT #define fabsf fabs -#pragma warning( disable : 4244 ) -#pragma warning( disable : 4305 ) #endif typedef struct _misc @@ -798,4 +812,5 @@ void z_sigbin_setup(void) sigEQUAL_setup(); sigOR_setup(); sigAND_setup(); + zexy_register("sigbin"); } -- cgit v1.2.1