diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Win32/Exe/DebugDirectory.pm')
-rwxr-xr-x | Master/tlpkg/tlperl/lib/Win32/Exe/DebugDirectory.pm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/Win32/Exe/DebugDirectory.pm b/Master/tlpkg/tlperl/lib/Win32/Exe/DebugDirectory.pm new file mode 100755 index 00000000000..f87cc0062be --- /dev/null +++ b/Master/tlpkg/tlperl/lib/Win32/Exe/DebugDirectory.pm @@ -0,0 +1,19 @@ +# $File: //local/member/autrijus/Win32-Exe/lib/Win32/Exe/DebugDirectory.pm $ $Author: autrijus $ +# $Revision: #5 $ $Change: 1130 $ $Date: 2004-02-17T15:40:29.640821Z $ + +package Win32::Exe::DebugDirectory; + +use strict; +use base 'Win32::Exe::Base'; +use constant FORMAT => ( + Flags => 'V', + TimeStamp => 'V', + VersionMajor => 'v', + VersionMinor => 'v', + Type => 'V', + Size => 'V', + VirtualAddress => 'V', + Offset => 'V', +); + +1; |