예제 #1
0
파일: fl.cpp 프로젝트: andrejmuhic/qminer
void TFRnd::PutBf(const void* Bf, const TSize& BfL){
  RefreshFPos();
  EAssertR(
   fwrite(Bf, 1, BfL, FileId)==BfL,
   "Error writting to the file '"+TStr(FNm)+"'.");
}
예제 #2
0
파일: flx.cpp 프로젝트: Accio/snap
void TFRnd::PutBf(const void* Bf, const int& BfL){
  RefreshFPos();
  EAssertR(
   int(fwrite(Bf, 1, BfL, FileId))==BfL,
   "Error writting to the file '"+FNm+"'.");
}
예제 #3
0
파일: fl.cpp 프로젝트: andrejmuhic/qminer
void TFRnd::GetBf(void* Bf, const TSize& BfL){
  RefreshFPos();
  EAssertR(
   fread(Bf, 1, BfL, FileId)==BfL,
   "Error reading file '"+TStr(FNm)+"'.");
}
예제 #4
0
파일: flx.cpp 프로젝트: Accio/snap
void TFRnd::GetBf(void* Bf, const int& BfL){
  RefreshFPos();
  EAssertR(
   int(fread(Bf, 1, BfL, FileId))==BfL,
   "Error reading file '"+FNm+"'.");
}