예제 #1
0
bool FileEnum::next() {
  bool more;
  if (!next_nt(more))
    throw Error(HRESULT_FROM_WIN32(GetLastError()), file_mask, __FILE__, __LINE__);
  return more;
}
예제 #2
0
bool FileEnum::next() {
  bool more;
  CHECK_SYS(next_nt(more));
  return more;
}