예제 #1
0
int32_t ABLFile::readLineEx(puint8_t buffer, int32_t maxLength)
{
	if (file)
		return (readLineExCB(file, buffer, maxLength));
	return (0);
}
예제 #2
0
long ABLFile::readLineEx (unsigned char* buffer, long maxLength) {

	if (file)
		return(readLineExCB(file, buffer, maxLength));
	return(0);
}