22 lines
395 B
Perl
22 lines
395 B
Perl
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;
|