Added regedit unit test, a couple minor changes to regedit.
[wine] / programs / winetest / include / winreg.pm
1 # Automatically generated by make_symbols; DO NOT EDIT!! 
2 #
3 # Perl definitions for header file winreg.h
4 #
5
6
7 package winreg;
8
9 use strict;
10
11 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
12
13 require Exporter;
14
15 @ISA = qw(Exporter);
16 @EXPORT = qw(
17     HKEY_CLASSES_ROOT
18     HKEY_CURRENT_CONFIG
19     HKEY_CURRENT_USER
20     HKEY_DYN_DATA
21     HKEY_LOCAL_MACHINE
22     HKEY_PERFORMANCE_DATA
23     HKEY_USERS
24 );
25 @EXPORT_OK = qw();
26
27 use constant HKEY_CLASSES_ROOT => -2147483648;
28 use constant HKEY_CURRENT_CONFIG => -2147483643;
29 use constant HKEY_CURRENT_USER => -2147483647;
30 use constant HKEY_DYN_DATA => -2147483642;
31 use constant HKEY_LOCAL_MACHINE => -2147483646;
32 use constant HKEY_PERFORMANCE_DATA => -2147483644;
33 use constant HKEY_USERS => -2147483645;
34
35 1;