The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Win32API/ToolHelp version 0.02
==============================

The functions provided by the ToolHelp library make it easier for you
to obtain information about currently executing applications. These functions
are designed to streamline the creation of tools, specifically debuggers.

It covers enumerating the currently running processes and their modules,
traversing heaps, listing threads and taking snapshots of memory
of the currently running processes. The results are return in a form
as close as possible to the original Win32 API (simple types are returned
as scalars of the same type and structures are returned as references to hashes
with keys of the same names as the members of the original structures have).
There are all functions of the ToolHelp library implemented in this module.

The support for the ToolHelp library API is included in Windows 95
or higher or in Windows 2000 or higher. It is not included in Windows NT. See
the module Win32API::ProcessStatus for the similar functionality
for Windows NT.

INSTALLATION

To install this module from the sources type the following:

   perl Makefile.PL
   nmake
   nmake test
   nmake install

If you are user of ActivePerl build 6xx you can alternatively run
the packaging script and then install this module via the package
manager (it is the preffered way, by the way):

   build
   cd package
   ppm install Win32API-ToolHelp.ppd

DEPENDENCIES

This module requires these other modules and libraries:

   build of Perl 5.6.1 for Win32
   Exporter
   DynaLoader

COPYRIGHT AND LICENCE

Copyright (C) 2002  Ferdinand Prantl. All rights reserved.

Permission to use, copy, modify, distribute and sell this software
and its documentation for any purpose is hereby granted without fee,
provided that the above copyright notice appear in all copies and
that both that copyright notice and this permission notice appear
in supporting documentation. Author makes no representations
about the suitability of this software for any purpose.  It is
provided "as is" without express or implied warranty.

See http://prantl.host.sk/perl/modules/Win32API/ToolHelp
for the most recent version.