Author: ArcRiley Date: 2007-07-01 05:18:30 -0400 (Sun, 01 Jul 2007) New Revision: 320
Added: trunk/pysoy/src/audio/ trunk/pysoy/src/audio/soy.audio.pxd trunk/pysoy/src/audio/soy.audio.pyx Log: new audio extension (just a framework) Property changes on: trunk/pysoy/src/audio ___________________________________________________________________ Name: svn:ignore + soy.audio.c Added: trunk/pysoy/src/audio/soy.audio.pxd =================================================================== --- trunk/pysoy/src/audio/soy.audio.pxd (rev 0) +++ trunk/pysoy/src/audio/soy.audio.pxd 2007-07-01 09:18:30 UTC (rev 320) @@ -0,0 +1,25 @@ +# PySoy audio declarations +# +# Copyright (C) 2006,2007 Team PySoy +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see http://www.gnu.org/licenses +# or write to the Free Software Foundation,Inc., 51 Franklin Street, +# Fifth Floor, Boston, MA 02110-1301 USA +# +# $Id$ + +cimport ogg +cimport stdio +cimport soy._internals + Property changes on: trunk/pysoy/src/audio/soy.audio.pxd ___________________________________________________________________ Name: svn:keywords + Id Added: trunk/pysoy/src/audio/soy.audio.pyx =================================================================== --- trunk/pysoy/src/audio/soy.audio.pyx (rev 0) +++ trunk/pysoy/src/audio/soy.audio.pyx 2007-07-01 09:18:30 UTC (rev 320) @@ -0,0 +1,31 @@ +'''soy.audio Classes + + This extension provides audio support +''' +__credits__ = '''Copyright (C) 2006,2007 PySoy Developers + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see http://www.gnu.org/licenses + or write to the Free Software Foundation,Inc., 51 Franklin Street, + Fifth Floor, Boston, MA 02110-1301 USA +''' +__author__ = '''Maintained by ArcRiley''' +__date__ = 'Last change on '+ \ + '$Date$'[7:-20]+ \ + 'by '+'$Author$'[9:-2] +__version__ = 'Trunk (r'+'$Rev$'[6:-2]+')' + +## These are TODO: +#include "Music.pxi" +#include "Sound.pxi" +#include "Voice.pxi" Property changes on: trunk/pysoy/src/audio/soy.audio.pyx ___________________________________________________________________ Name: svn:keywords + Author Date Rev _______________________________________________ PySoy-SVN mailing list [email protected] http://www.pysoy.org/mailman/listinfo/pysoy-svn
