Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
605 B

  1. package Win32::Resource;
  2. BEGIN {
  3. die "The Win32::Resource module works only on Windows NT"
  4. unless Win32::IsWinNT();
  5. }
  6. use strict;
  7. use vars qw($VERSION @ISA);
  8. use DynaLoader;
  9. $VERSION = '0.03';
  10. @ISA = qw(DynaLoader);
  11. bootstrap Win32::Resource;
  12. 1;
  13. __END__
  14. =head1 NAME
  15. Win32::Resource::Bind - bind resources to modules in perl
  16. =head1 SYNOPSIS
  17. use Win32::Resource;
  18. Win32::Resource::Bind($Script, $binmodule, $exeName, $resName, $resID)
  19. or die "unable to bind resource";
  20. =head1 DESCRIPTION
  21. This module offers binding of additional resource types to specific modules.
  22. =cut