~ubuntu-branches/ubuntu/lucid/ming/lucid

« back to all changes in this revision

Viewing changes to perl_ext/SoundInstance.xs

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-02-11 10:57:41 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100211105741-lzpmxc0703c4bo1w
Tags: 1:0.4.3-1ubuntu1
* Merge from Debian unstable (LP: #192664), remaining changes:
  - Python 2.6 transition:
    - debian/rules:
      + Include /usr/share/python/python.mk.
      + Add py_setup_install_args macro to setup.py install.
      + Installed modules differ between python versions and can't be shared,
        use DH_PYCENTRAL=nomove.
    - Remove unnecessary debian/python-ming.{dirs,files}, Python 2.3 is not
      supported anymore.
* debian/control: separate dependencies by commas.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * it under the same terms as Perl itself.
5
5
 * ====================================================================
6
6
 *
7
 
 * $Author: whamann $
 
7
 * $Author: akleine $
8
8
 */
9
9
 
10
10
 
21
21
 
22
22
 
23
23
void
24
 
SWFSoundInstance_DESTROY(inst)
 
24
destroySWFSoundInstance(inst)
25
25
        SWF::SoundInstance      inst
26
26
        CODE:
27
27
        S_DEBUG(2, fprintf(stderr, "SoundInstance DESTROY CALLED\n"));
54
54
        int count
55
55
        CODE:
56
56
        SWFSoundInstance_setLoopCount(inst, count);
57
 
        
58
57
 
 
58
void 
 
59
SWFSoundInstance_addEnvelope(inst, mark44, left, right)
 
60
        SWF::SoundInstance inst
 
61
        unsigned int mark44
 
62
        short left
 
63
        short right
 
64
        CODE:
 
65
        SWFSoundInstance_addEnvelope(inst, mark44, left, right);