mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
21 lines
462 B
Perl
21 lines
462 B
Perl
package winearts_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"]],
|
|
"wodMessage" => ["long", ["long", "long", "long", "long", "long"]]
|
|
};
|
|
|
|
&wine::declare("winearts.drv",%$module_declarations);
|
|
push @EXPORT, map { "&" . $_; } sort(keys(%$module_declarations));
|
|
1;
|