Feb-01-95

GREPQUIK.DLL - Quick Grep or FileGrep on the current word

Updated from July '94 release, fixing a bug in which the flags
argument was incorectly sent to LibFunctionExec.
	
Updated from May '94 release, incorporating bug fixes submitted
by a customer whose name has unfortunately been lost.
	
This DLL adds four API calls:


long GrepQuick(DWORD flags)

	Does a grep in the current buffer of the word at the cursor.
	The optional flags argument can be used to override the
	current search flags.  If no flags argument is given, the
	settings in the Search | Options dialog are used.


long GrepPrompt(DWORD flags)

	Does a grep in the current buffer.  Prompts the user for the
	string to search for, using the word at the cursor as the
	default.  The optional flags argument can be used to override
	the current search flags.  If no flags argument is given, the
	settings in the Search | Options dialog are used.


long FGrepQuick(LPSTR filespec, WORD flags)

	Does a file grep of the word at the cursor.  If no filespec
	is given, searches through all open buffers.  If no flags
	are given, uses the options set from the File | Grep
	dialog.


long FGrepPrompt(LPSTR filespec, WORD flags)

	Does a file grep, prompting the user for the search string.
	The word at the cursor is the default for the search.  If
	no filespec is given, searches through all open buffers.
	If no flags are given, uses the options set from the
	File | Grep dialog.


To use this library, copy the file GREPQUIK.DLL to your Codewright
installation directory, and use the "Add.." button in Customize |
Libraries..	to add the "GREPQUIK.DLL" to "User Defined Libraries".
