X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=bfile%2Fmfile.h;h=7f653cbae2de4d1051ef2e32492bc911937bf1d1;hb=be6f4de56d3ab4fd49fbea540afe2580b947cded;hp=eece9ce5130f197b1251763cdea9ec29846f5ed5;hpb=61080b04dd2fe74b70d413cb31e9197713bb0762;p=idzebra-moved-to-github.git diff --git a/bfile/mfile.h b/bfile/mfile.h index eece9ce..7f653cb 100644 --- a/bfile/mfile.h +++ b/bfile/mfile.h @@ -1,4 +1,4 @@ -/* $Id: mfile.h,v 1.3 2006-04-05 02:02:37 adam Exp $ +/* $Id: mfile.h,v 1.5 2006-05-10 08:13:17 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -145,6 +145,31 @@ int mf_unlink(MFile mf); */ void mf_reset(MFile_area ma); +/* \brief gets statistics about directory in metafile area + \param ma the area + \param no directory number (0=first, 1=second,...) + \param directory holds directory name (if found) + \param used_bytes used file bytes in directory (if found) + \param max_bytes max usage of bytes (if found) + \retval 1 no is within range and directory, used, max are set. + \retval 0 no is out of range and directory, used, max are unset + + We are using double, because off_t may have a different size + on same platform depending on whether 64-bit is enabled or not. + Note that if an area has unlimited size, that is represented + as max_bytes = -1. +*/ +int mf_area_directory_stat(MFile_area ma, int no, const char **directory, + double *bytes_used, double *bytes_max); + YAZ_END_CDECL #endif +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +