git-svn-id: svn://db.shs.com.ru/pip@260 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2016-09-08 04:59:52 +00:00
parent 3983ee1648
commit a37211aad3
6 changed files with 26 additions and 3 deletions

View File

@@ -319,3 +319,10 @@ PIString PIIODevice::normalizeFullPath(const PIString & full_path) {
nfp_cache[full_path] = ret;
return ret;
}
bool PIIODevice::threadedRead(uchar *readed, int size) {
// piCout << "iodevice threaded read";
if (ret_func_ != 0) return ret_func_(ret_data_, readed, size);
return true;
}