__int64 getTicks(int fieldno);
The function getTicks() returns content of Date and DateTime field as timestamp in milliseconds since 1970.
Do not forget to call readRecord().
{
// your code
dbf->readRecord( row );
printf( "%f\n", dbf->getTicks( 0 ) );
// your code
}