//---------------------------------------------------------------------------
//
// Function:    EplObduGetDataSize()
//
// Description: function to initialize VarEntry dependened on object type
//
//              gets the data size of an object
//              for string objects it returnes the string length
//
// Parameters:  uiIndex_p   =   Index
//              uiSubIndex_p=   Subindex
//
// Return:      tEplObdSize
//
// State:
//
//---------------------------------------------------------------------------
tEplObdSize EplObduGetDataSize(unsigned int uiIndex_p, unsigned int uiSubIndex_p)
{
	tEplObdSize Size;

	Size = EplObduCalGetDataSize(uiIndex_p, uiSubIndex_p);

	return Size;
}
Esempio n. 2
0
//---------------------------------------------------------------------------
//
// Function:    EplObduGetDataSize()
//
// Description: function to initialize VarEntry dependened on object type
//
//              gets the data size of an object
//              for string objects it returnes the string length
//
// Parameters:  uiIndex_p   =   Index
//              uiSubIndex_p=   Subindex
//
// Return:      tEplObdSize
//
// State:
//
//---------------------------------------------------------------------------
EPLDLLEXPORT tEplObdSize PUBLIC EplObduGetDataSize(unsigned int uiIndex_p,
						   unsigned int uiSubIndex_p)
{
	tEplObdSize Size;

	Size = EplObduCalGetDataSize(uiIndex_p, uiSubIndex_p);

	return Size;
}