home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
editor
/
j414src.arc
/
REC.H
< prev
next >
Wrap
C/C++ Source or Header
|
1989-10-10
|
940b
|
28 lines
/***************************************************************************
* This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne. JOVE *
* is provided to you without charge, and with no warranty. You may give *
* away copies of JOVE, including sources, provided that this notice is *
* included in all the files. *
***************************************************************************/
struct rec_head {
int Uid, /* uid of owner */
Pid; /* pid of jove process */
time_t UpdTime; /* last time this was updated */
int Nbuffers; /* number of buffers */
daddr FreePtr; /* position of DFree */
};
struct rec_entry {
char r_bname[128],
r_fname[128];
int r_nlines,
r_dotline, /* so we can really save the context */
r_dotchar;
};
extern void
SyncRec proto((void)),
recclose proto((void)),
FullRecover proto((void));