[PD-cvs] externals/postlude/dssi/src dssi~.c,1.7,1.8

Jamie Bullock postlude at users.sourceforge.net
Wed Mar 15 18:29:18 CET 2006


Update of /cvsroot/pure-data/externals/postlude/dssi/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7335/src

Modified Files:
	dssi~.c 
Log Message:
Bug fix to dssi_tilde_new. Still needs work though.


Index: dssi~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/postlude/dssi/src/dssi~.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** dssi~.c	11 Mar 2006 20:32:51 -0000	1.7
--- dssi~.c	15 Mar 2006 17:29:14 -0000	1.8
***************
*** 1,5 ****
  /* dssi~ - A DSSI host for PD 
   * 
!  * Copyright 2006 Jamie Bullock and others 
   *
   * This file incorporates code from the following sources:
--- 1,5 ----
  /* dssi~ - A DSSI host for PD 
   * 
!  * Copyright (C) 2006 Jamie Bullock and others 
   *
[...4120 lines suppressed...]
  #endif
! 	return osc_midi_handler(x, argv, instance);
  
      } else if (!strcmp(method, "program") && argc == 2 && !strcmp(types, "ii")){
  #if DEBUG
! 	post("calling osc_program_handler"); 
  #endif
! 	return osc_program_handler(x, argv, instance);
  
      } else if (!strcmp(method, "update") && argc == 1 && !strcmp(types, "s")){
  #if DEBUG
! 	post("calling osc_update_handler"); 
  #endif
! 	return osc_update_handler(x, argv, instance);
  
      } else if (!strcmp(method, "exiting") && argc == 0) {
  
! 	return osc_exiting_handler(x, argv, instance);
      }
  





More information about the Pd-cvs mailing list