summaryrefslogtreecommitdiff
path: root/src/tools/msvc/dummylib/Win32/Registry.pm
blob: e14636eb317d3d31e5f174f827e6135f3eba1523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

# Copyright (c) 2021-2023, PostgreSQL Global Development Group

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;