X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=blobdiff_plain;f=restore%2Fextern.h;h=408169fc5ae49eac8954097cd8b5405a03bfc1fc;hp=54b37abf017d543a37e860efa5cf713e6b718812;hb=fe0e02857a1ff7db4bf8cb28780de7ecf2f24234;hpb=1227625a12a66e0ded78a1997c2d23f23202a382 diff --git a/restore/extern.h b/restore/extern.h index 54b37ab..408169f 100644 --- a/restore/extern.h +++ b/restore/extern.h @@ -1,8 +1,11 @@ /* * Ported to Linux's Second Extended File System as part of the * dump and restore backup suit - * Remy Card , 1994, 1995, 1996 + * Remy Card , 1994-1997 + * Stelian Pop , 1999-2000 + * Stelian Pop - AlcĂ´ve , 2000-2002 * + * $Id: extern.h,v 1.16 2002/02/04 11:18:46 stelian Exp $ */ /*- @@ -36,61 +39,64 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * @(#)extern.h 8.2 (Berkeley) 1/7/94 */ -struct entry *addentry __P((char *, ino_t, int)); -long addfile __P((char *, ino_t, int)); -void badentry __P((struct entry *, char *)); -void canon __P((char *, char *)); +#include + +struct entry *addentry __P((char *, dump_ino_t, int)); +long addfile __P((char *, dump_ino_t, int)); +int addwhiteout __P((char *)); +void badentry __P((struct entry *, const char *)); +void canon __P((char *, char *, int)); void checkrestore __P((void)); void closemt __P((void)); +void cleanup __P((void)); +void comparefile __P((char *)); +void compareleaves __P((void)); void createfiles __P((void)); void createleaves __P((char *)); -void compareleaves __P((void)); void createlinks __P((void)); -long deletefile __P((char *, ino_t, int)); -void deleteino __P((ino_t)); -ino_t dirlookup __P((const char *)); -__dead void done __P((int)); +long deletefile __P((char *, dump_ino_t, int)); +void deleteino __P((dump_ino_t)); +void delwhiteout __P((struct entry *)); +dump_ino_t dirlookup __P((const char *)); void dumpsymtable __P((char *, long)); void extractdirs __P((int)); int extractfile __P((char *)); -void comparefile __P((char *)); void findunreflinks __P((void)); char *flagvalues __P((struct entry *)); void freeentry __P((struct entry *)); void freename __P((char *)); -int genliteraldir __P((char *, ino_t)); +int genliteraldir __P((char *, dump_ino_t)); char *gentempname __P((struct entry *)); -void getfile __P((void (*)(char *, long), void (*)(char *, long))); +void getfile __P((void (*)(char *, size_t), void (*)(char *, size_t))); void getvol __P((long)); void initsymtable __P((char *)); -int inodetype __P((ino_t)); +int inodetype __P((dump_ino_t)); int linkit __P((char *, char *, int)); -struct entry *lookupino __P((ino_t)); +struct entry *lookupino __P((dump_ino_t)); struct entry *lookupname __P((char *)); -long listfile __P((char *, ino_t, int)); -ino_t lowerbnd __P((ino_t)); +long listfile __P((char *, dump_ino_t, int)); +dump_ino_t lowerbnd __P((dump_ino_t)); void mktempname __P((struct entry *)); void moveentry __P((struct entry *, char *)); void msg __P((const char *, ...)); char *myname __P((struct entry *)); void newnode __P((struct entry *)); void newtapebuf __P((long)); -long nodeupdates __P((char *, ino_t, int)); +long nodeupdates __P((char *, dump_ino_t, int)); void onintr __P((int)); void panic __P((const char *, ...)); void pathcheck __P((char *)); struct direct *pathsearch __P((const char *)); void printdumpinfo __P((void)); +void printvolinfo __P((void)); void removeleaf __P((struct entry *)); void removenode __P((struct entry *)); void removeoldleaves __P((void)); void removeoldnodes __P((void)); void renameit __P((char *, char *)); -int reply __P((char *)); +int reply __P((const char *)); RST_DIR *rst_opendir __P((const char *)); struct direct *rst_readdir __P((RST_DIR *)); void rst_closedir __P((RST_DIR *dirp)); @@ -103,15 +109,29 @@ void skipdirs __P((void)); void skipfile __P((void)); void skipmaps __P((void)); void swabst __P((u_char *, u_char *)); -void treescan __P((char *, ino_t, long (*)(char *, ino_t, int))); -ino_t upperbnd __P((ino_t)); -long verifyfile __P((char *, ino_t, int)); -void xtrnull __P((char *, long)); +void treescan __P((char *, dump_ino_t, long (*)(char *, dump_ino_t, int))); +dump_ino_t upperbnd __P((dump_ino_t)); +long verifyfile __P((char *, dump_ino_t, int)); +void xtrnull __P((char *, size_t)); /* From ../dump/dumprmt.c */ void rmtclose __P((void)); -int rmthost __P((char *)); +int rmthost __P((const char *)); int rmtioctl __P((int, int)); -int rmtopen __P((char *, int)); -int rmtread __P((char *, int)); +int rmtopen __P((const char *, int)); +int rmtread __P((const char *, int)); int rmtseek __P((int, int)); + +/* From e2fsprogs */ +int fsetflags __P((const char *, unsigned long)); +int fgetflags __P((const char *, unsigned long *)); +int setflags __P((int, unsigned long)); + +#ifdef USE_QFA +int Inode2Tapepos __P((dump_ino_t, long *, long long *, int)); +int GetTapePos __P((long long *)); +int GotoTapePos __P((long long)); +void ReReadFromTape __P((void)); +void ReReadInodeFromTape __P((dump_ino_t)); +#endif +void RequestVol __P((long));