blob: 73bd898497f3eb99f88512768c937edf4d58f1c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright (c) 2021, 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;
|