blob: 980f9a53e49f9b5ed6e0ba757c291104428d3d9d [file] [log] [blame]
package dciman32;
use strict;
require Exporter;
use wine;
use vars qw(@ISA @EXPORT @EXPORT_OK);
@ISA = qw(Exporter);
@EXPORT = qw();
@EXPORT_OK = qw();
my $module_declarations = {
"DCICloseProvider" => ["void", ["long"]],
"DCIOpenProvider" => ["long", []]
};
&wine::declare("dciman32",%$module_declarations);
push @EXPORT, map { "&" . $_; } sort(keys(%$module_declarations));
1;