Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / media / XS / MediaEvent.xsp
1 #############################################################################
2 ## Name:        ext/media/XS/MediaEvent.xsp
3 ## Purpose:     XS++ for Wx::MediaCtrl
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     04/03/2006
7 ## RCS-ID:      $Id: MediaEvent.xsp 2079 2007-07-08 21:18:04Z mbarbon $
8 ## Copyright:   (c) 2006 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 %module{Wx};
14
15 #include <wx/setup.h>
16
17 #if wxUSE_MEDIACTRL
18
19 #include <wx/mediactrl.h>
20
21 %typemap{wxMediaEvent*}{simple};
22
23 %name{Wx::MediaEvent} class wxMediaEvent
24 {
25     wxMediaEvent( wxEventType commandType = wxEVT_NULL, int winid = 0 );
26 };
27
28 #endif