projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Added regedit unit test, a couple minor changes to regedit.
[wine]
/
programs
/
winetest
/
include
/
riched32.pm
1
package riched32;
2
3
use strict;
4
5
require Exporter;
6
7
use wine;
8
use vars qw(@ISA @EXPORT @EXPORT_OK);
9
10
@ISA = qw(Exporter);
11
@EXPORT = qw();
12
@EXPORT_OK = qw();
13
14
my $module_declarations = {
15
"DllGetVersion" => ["long", ["ptr"]]
16
};
17
18
&wine::declare("riched32",%$module_declarations);
19
push @EXPORT, map { "&" . $_; } sort(keys(%$module_declarations));
20
1;