aboutsummaryrefslogtreecommitdiff
path: root/src/tools/msvc/dummylib/Win32/Registry.pm
blob: 1433b1fb54f3cb848529be3f05c78ad15381bc9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Win32::Registry;

use strict;
use warnings;

use vars qw($HKEY_LOCAL_MACHINE);

use Exporter ();
our (@EXPORT, @ISA);
@ISA    = qw(Exporter);
@EXPORT = qw($HKEY_LOCAL_MACHINE);

1;