/****************** Alexander Rodigin **********************/
/***********************************************************/
/******************  RUSSIA May,2000  **********************/
/***********************************************************/
/******************   About WinGod    **********************/
/***********************************************************/
< 1 >
WinGod (TrasWinGod) is a Delphi component that enables you to
monitor mouse & keyboard messages in Windows. WinGod is an in
terface to rasKB50.dll, rasM50.dll and rasSh50.dll. These DLLs 
are needed for monitoring the message traffic so you have to 
put them either into your exe's directory or into Windows or 
System directory.

< 2 >
To install WinGod into IDE
 
  After unzipping wingod.zip copy *.pas files into 
  ~Delphi\WinGod directory and *.dll files into 
  Windows\System directory. After that select WinGod.pas 
  through Component|InstallComponent ...
  The WinGod will be registered and you'll be able to
  use it just like any component. Do not forget to
  distribute *.dll files with your application.

< 3 >
WinGod works very simple.
--To set some hook use the following construction:
  try
    rasWinGod1.SetKBHook; // or rasWinGod1.SetMouseHook;
  except
    On WinGod.HookError do ShowMessage('Error');
  end;

--To remove the hook:
  rasWinGod1.RemoveMouseHook; // or rasWinGod1.RemoveKBHook;
  or wait until rasWinGod1 will be destroyed.

--To enable/disable the hook (not removing it):
  rasWinGod1.KeybrdHookEnabled:=True/False; or
  rasWinGod1.MouseHookEnabled:=True/False;

--To process messages from the hook define an event handler
  through Object Inspector. To understand an event parameters
  see Win32 Programmers Reference->Hooks.
  
< 4 >
Other useful components are available at http://ras.freehosting.net
    
