22 lines
460 B
Perl
22 lines
460 B
Perl
|
package midimap_drv;
|
||
|
|
||
|
use strict;
|
||
|
|
||
|
require Exporter;
|
||
|
|
||
|
use wine;
|
||
|
use vars qw(@ISA @EXPORT @EXPORT_OK);
|
||
|
|
||
|
@ISA = qw(Exporter);
|
||
|
@EXPORT = qw();
|
||
|
@EXPORT_OK = qw();
|
||
|
|
||
|
my $module_declarations = {
|
||
|
"DriverProc" => ["long", ["long", "long", "long", "long", "long"]],
|
||
|
"modMessage" => ["long", ["long", "long", "long", "long", "long"]]
|
||
|
};
|
||
|
|
||
|
&wine::declare("midimap.drv",%$module_declarations);
|
||
|
push @EXPORT, map { "&" . $_; } sort(keys(%$module_declarations));
|
||
|
1;
|