//---------------------------------------------------------------------------
//
// Function:    EplObduGetObjectDataPtr()
//
// Description: It returnes the current data pointer. But if object is an
//              constant object it returnes the default pointer.
//
// Parameters:  uiIndex_p    =   Index of the entry
//              uiSubindex_p =   Subindex of the entry
//
// Return:      void *    = pointer to object data
//
// State:
//
//---------------------------------------------------------------------------
void *EplObduGetObjectDataPtr(unsigned int uiIndex_p, unsigned int uiSubIndex_p)
{
	void *pData;

	pData = EplObduCalGetObjectDataPtr(uiIndex_p, uiSubIndex_p);

	return pData;
}
Exemplo n.º 2
0
//---------------------------------------------------------------------------
//
// Function:    EplObduGetObjectDataPtr()
//
// Description: It returnes the current data pointer. But if object is an
//              constant object it returnes the default pointer.
//
// Parameters:  uiIndex_p    =   Index of the entry
//              uiSubindex_p =   Subindex of the entry
//
// Return:      void *    = pointer to object data
//
// State:
//
//---------------------------------------------------------------------------
EPLDLLEXPORT void *PUBLIC EplObduGetObjectDataPtr(unsigned int uiIndex_p,
						  unsigned int uiSubIndex_p)
{
	void *pData;

	pData = EplObduCalGetObjectDataPtr(uiIndex_p, uiSubIndex_p);

	return pData;
}