4.06.2013 - Version 0.3.4 - PIOBJECT() macro, ethernet improvement, documentation based on Doxygen

This commit is contained in:
peri4
2013-06-04 21:28:15 +04:00
parent 02c629d6a8
commit 9111640ca8
53 changed files with 3019 additions and 910 deletions

View File

@@ -32,7 +32,7 @@ bool PIFile::openDevice() {
bool PIFile::closeDevice() {
if (!opened_) return true;
if (!opened_ || fd == 0) return true;
return (fclose(fd) == 0);
}
@@ -104,7 +104,7 @@ void PIFile::resize(llong new_size, char fill_) {
delete[] buff;
return;
}
piCout << "[PIFile] Downsize is not support yet :-(" << endl;
piCout << "[PIFile] Downsize is not support yet :-(";
}