This directory contains the files that are used to
build the shared memory library.

The functions of the shared memory library are:
NOTE: the "C" functions are for use as a "C" interface to the "CDataTransfer" class
"C" functions:
	int iInitTransfer(int iID,int iSize);	// returns index of new instance or -1 if error occurs
	void DeleteTransferAll();
	void TransferSetData(int iInstance,int iIndex,double dValue);
	double dTransferGetData(int iInstance,int iIndex);
	void TransferReadData(int iInstance);
	void TransferWriteData(int iInstance);

"C++ functions"
CLASS: CDataTransfer:
	CDataTransfer(int iDataSize, int iClassID=1) - 
	void ReadData() - 
	void WriteData() - 
	void SetData(int iIndex,double dValue) - 
	double dGetData(int iIndex) -