2010-06-09 16:24:30 +04:00
|
|
|
|
|
|
|
/** \file
|
|
|
|
* \brief Header: file locking
|
|
|
|
* \author Adam Byrtek
|
|
|
|
* \date 2003
|
|
|
|
* Look at lock.c for more details
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MC_LOCK_H
|
|
|
|
#define MC_LOCK_H
|
|
|
|
|
2011-11-03 01:34:35 +04:00
|
|
|
#include "lib/vfs/vfs.h" /* vfs_path_t */
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
|
2011-11-03 01:34:35 +04:00
|
|
|
int lock_file (const vfs_path_t * fname_vpath);
|
|
|
|
int unlock_file (const vfs_path_t * fname_vpath);
|
2010-06-09 16:24:30 +04:00
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
|
2010-06-09 16:24:30 +04:00
|
|
|
#endif /* MC_LOCK_H */
|