January 25, 1994

This .ZIP file includes the latest version of BWCC.DLL.  Please
place it in your \WINDOWS\SYSTEM directory and remove other
versions of BWCC.DLL from your system.


*** NOTES FOR INTERNATIONAL USERS ***

To activate an international version of BWCC, you must install 
the appropriate language version in addition to BWCC.DLL in your 
WINDOWS\SYSTEM directory:

   German   BWCC0007.DLL
   English  BWCC0009.DLL 
   French   BWCC000C.DLL

You must also call BWCCIntlInit, passing one of the following 
parameters:

   German    7
   English   9
   French   12

Before your application terminates, you must also call BWCCIntlTerm
to release the international DLL.

Since BWCC.PAS/.TPW does not include these routines, you will need 
to define them for your application as follows:

 function BWCCIntlInit(language: Word): Bool; far; external 'BWCC' index 16;
 function BWCCIntlTerm: Bool; far; external 'BWCC' index 17;

TIP: If you expect to use one of these international versions on 
a regular basis, you may want to add these declarations to BWCC.PAS.
