Added regedit unit test, a couple minor changes to regedit.
[wine] / programs / winetest / include / windef.pm
1 # Automatically generated by make_symbols; DO NOT EDIT!! 
2 #
3 # Perl definitions for header file windef.h
4 #
5
6
7 package windef;
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     HFILE_ERROR
18     MAX_PATH
19     WINVER
20     _MAX_DIR
21     _MAX_DRIVE
22     _MAX_EXT
23     _MAX_FNAME
24     _MAX_PATH
25 );
26 @EXPORT_OK = qw();
27
28 use constant HFILE_ERROR => -1;
29 use constant MAX_PATH => 260;
30 use constant WINVER => 1280;
31 use constant _MAX_DIR => 256;
32 use constant _MAX_DRIVE => 3;
33 use constant _MAX_EXT => 256;
34 use constant _MAX_FNAME => 256;
35 use constant _MAX_PATH => 260;
36
37 1;