[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [11559] branches/soc-2007-hcube/source/ blender: Added audio_sound_delete function.

Csaba Hruska csaba.hruska at gmail.com
Sun Aug 12 16:18:12 CEST 2007


Revision: 11559
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=11559
Author:   hcube
Date:     2007-08-12 16:18:12 +0200 (Sun, 12 Aug 2007)

Log Message:
-----------
Added audio_sound_delete function.

Modified Paths:
--------------
    branches/soc-2007-hcube/source/blender/include/BAU_soundsystem.h
    branches/soc-2007-hcube/source/blender/src/soundsystem.c

Modified: branches/soc-2007-hcube/source/blender/include/BAU_soundsystem.h
===================================================================
--- branches/soc-2007-hcube/source/blender/include/BAU_soundsystem.h	2007-08-12 08:10:26 UTC (rev 11558)
+++ branches/soc-2007-hcube/source/blender/include/BAU_soundsystem.h	2007-08-12 14:18:12 UTC (rev 11559)
@@ -18,6 +18,7 @@
 // bSound functions
 // hint: a bSound->sample cant be NULL, always have to be a valid pointer
 struct bSound*  audio_sound_new(char *name);
+void            audio_sound_delete(struct bSound* sound);
 struct bSound*  audio_sound_clone(struct bSound* originalsound);
 struct bSound*  audio_sound_findbyid(char *id_name);
 

Modified: branches/soc-2007-hcube/source/blender/src/soundsystem.c
===================================================================
--- branches/soc-2007-hcube/source/blender/src/soundsystem.c	2007-08-12 08:10:26 UTC (rev 11558)
+++ branches/soc-2007-hcube/source/blender/src/soundsystem.c	2007-08-12 14:18:12 UTC (rev 11559)
@@ -147,6 +147,11 @@
 	return sample;
 }
 
+void audio_sound_delete(struct bSound* sound)
+{
+	// UNIMPLEMENTED !!!!!!!
+}
+
 struct bSample*	audio_sample_find( char *fname )
 {
 	bSample *sample;





More information about the Bf-blender-cvs mailing list