Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / XS / Wave.xs
1 #############################################################################
2 ## Name:        XS/Wave.xs
3 ## Purpose:     XS for Wx::Wave
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     01/01/2003
7 ## RCS-ID:      $Id: Wave.xs 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2003-2004 Mattia Barbon
9 ## Licence:     This program is free software; you can redistribute it and/or
10 ##              modify it under the same terms as Perl itself
11 #############################################################################
12
13 #if wxPERL_USE_WAVE
14
15 #include <wx/wave.h>
16
17 MODULE=Wx PACKAGE=Wx::Wave
18
19 wxWave*
20 wxWave::new( fileName )
21     wxString fileName
22
23 bool
24 wxWave::IsOk()
25
26 bool
27 wxWave::Play( async = true, looped = false )
28     bool async
29     bool looped
30
31 #endif