blob: 98d56c93f30fd9ec4efa70ec0f456e67741e20c7 [file] [log] [blame]
package sti;
use strict;
require Exporter;
use wine;
use vars qw(@ISA @EXPORT @EXPORT_OK);
@ISA = qw(Exporter);
@EXPORT = qw();
@EXPORT_OK = qw();
my $module_declarations = {
"StiCreateInstance" => ["long", ["long", "long", "ptr", "ptr"]]
};
&wine::declare("sti",%$module_declarations);
push @EXPORT, map { "&" . $_; } sort(keys(%$module_declarations));
1;