Example #1
0
//---------------------------------------------------------------------------
int32_t CSVFile::readULong(uint32_t row, uint32_t col, uint32_t& value)
{
	int32_t result = seekRowCol(row, col);
	if(result == NO_ERROR)
	{
		value = textToULong(dataBuffer);
	}
	else
		value = 0.0f;
	return(NO_ERROR);
}
Example #2
0
//---------------------------------------------------------------------------
long CSVFile::readULong (DWORD row, DWORD col, unsigned long &value)
{
	long result = seekRowCol(row,col);
	if (result == NO_ERR)
	{
		value = textToULong(dataBuffer);
	}
	else
		value = 0.0f;
	
	return(NO_ERR);
}