Under C/C++ you only can use the external library. If you are using Turbo C++ or Visual Studio 8 feel free to use the libfiles i provided with the library. You can find all you need in the header\c subdirectory. If that dosn't work you must create your own libfile. For this case i have included an def-file.
For Turbo C++/Borland C++ there is an tool named Implib.
Implib TextSuite.lib TextSuite.def
For Visual Studio an simmilary tool exists and it is named Lib.
Lib /DEF:TextSuite.def
Now you only need to include the header TextSuite.h and tell your compiler to use the existing or generated libfiles. After this you should be able to compile applications with use the TextSuite library.