*******************************************

Labjack simple c++ console application 

C++Builder version

Rockee Zhang
rockee@doppler.unl.edu

******************************************

Borland C++ Builder 4.0 or higher


This sample project include these key files:

Project1.cpp: main cpp file
Project1.h:   header file
ljackuw.h:    the modified DLL header file for BCB

ljackuwbcb.lib:  This small static library must be included
                 in project for linkage.  (removed 12/2/2002)


ljackuw.dll:  This dynamic library must exist for running
              the program.


***************************
Notes from LabJack Support:
1)  Rockee reports that Borland has a utility
called "implib" that converts our VC lib into a BCB
lib.  This is how Rockee made the file "ljackuwbcb.lib".

2)  Although they are supposed to be the same, Rockee found
that "WINAPI" had to be changed to "stdcall", and thus the
modified header file "ljackuw.h".

3)  The file ljackuw.dll is installed to the Windows system
directory by the LabJack installation software.

4)  Many thanks to Rockee the Husker, but go Buffs.

***************************
New notes from LabJack Support  (12/2/2002)

1)  Updated header file and changed all WINAPI references
to _stdcall.  This just means that wtypes.h does not
need to be included.

2)  The Borland lib file, "ljackuwbcb.lib", has been
removed from this distribution, since it needs
to be remade anytime we change the DLL.  Instead, what
you should do is issue the following command to make
your own Borland lib file:

implib ljackuw.lib ljackuw.dll
