2000-07-29 15:21:42 +02:00
|
|
|
/*
|
|
|
|
* videodir.h: Functions to maintain a distributed video directory
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2002-01-27 13:11:23 +01:00
|
|
|
* $Id: videodir.h 1.4 2002/01/27 12:37:20 kls Exp $
|
2000-07-29 15:21:42 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VIDEODIR_H
|
|
|
|
#define __VIDEODIR_H
|
|
|
|
|
2002-01-27 13:11:23 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2000-07-29 15:21:42 +02:00
|
|
|
extern const char *VideoDirectory;
|
|
|
|
|
|
|
|
int OpenVideoFile(const char *FileName, int Flags);
|
|
|
|
int CloseVideoFile(int FileHandle);
|
|
|
|
bool RenameVideoFile(const char *OldName, const char *NewName);
|
|
|
|
bool RemoveVideoFile(const char *FileName);
|
2002-01-27 13:11:23 +01:00
|
|
|
bool VideoFileSpaceAvailable(int SizeMB);
|
|
|
|
int VideoDiskSpace(int *FreeMB = NULL, int *UsedMB = NULL); // returns the used disk space in percent
|
2000-12-28 12:57:16 +01:00
|
|
|
const char *PrefixVideoFileName(const char *FileName, char Prefix);
|
2001-02-11 14:53:44 +01:00
|
|
|
void RemoveEmptyVideoDirectories(void);
|
2000-07-29 15:21:42 +02:00
|
|
|
|
|
|
|
#endif //__VIDEODIR_H
|