Win32/SearchPath version 0.02
=============================

Win32::SearchPath - Perl extension for the Win32 API SearchPath.

SYNOPSIS

  use Win32::SearchPath;

  $FullPath = SearchPath ('perl');

DESCRIPTION

This module is specifically for use with Win32::Process::Create.  That interface
requires the full path name of the executable, which SearchPath provides.

   $FULL_PATH = SearchPath(FILENAME)

Search for the specified FILENAME.  By default the extension ".exe" is added to 
FILENAME, but this is ignored if it already has an extension.  

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module will only run on Microsoft Windows, and requires a C compiler, a
linker, and a 'make' utility for installation.

COPYRIGHT AND LICENCE

Put the correct copyright and licence information here.

Copyright (C) 2004 Clive Darke

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. 

