xref: /openbsd/gnu/usr.bin/cvs/src/edit.h (revision 461cc63e)
1 /* Interface to "cvs edit", "cvs watch on", and related features
2 
3    This program is free software; you can redistribute it and/or modify
4    it under the terms of the GNU General Public License as published by
5    the Free Software Foundation; either version 2, or (at your option)
6    any later version.
7 
8    This program is distributed in the hope that it will be useful,
9    but WITHOUT ANY WARRANTY; without even the implied warranty of
10    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11    GNU General Public License for more details.  */
12 
13 extern int watch_on PROTO ((int argc, char **argv));
14 extern int watch_off PROTO ((int argc, char **argv));
15 
16 #ifdef CLIENT_SUPPORT
17 /* Check to see if any notifications are sitting around in need of being
18    sent.  These are the notifications stored in CVSADM_NOTIFY (edit,unedit);
19    commit calls notify_do directly.  */
20 extern void notify_check PROTO ((char *repository, char *update_dir));
21 #endif /* CLIENT_SUPPORT */
22 
23 /* Issue a notification for file FILENAME.  TYPE is 'E' for edit, 'U'
24    for unedit, and 'C' for commit.  WHO is the user currently running.
25    For TYPE 'E', VAL is the time+host+directory data which goes in
26    _editors, and WATCHES is zero or more of E,U,C, in that order, to specify
27    what kinds of temporary watches to set.  */
28 extern void notify_do PROTO ((int type, char *filename, char *who,
29 			      char *val, char *watches, char *repository));
30 
31 /* Set attributes to reflect the fact that EDITOR is editing FILENAME.
32    VAL is time+host+directory, or NULL if we are to say that EDITOR is
33    *not* editing FILENAME.  */
34 extern void editor_set PROTO ((char *filename, char *editor, char *val));
35 
36 /* Take note of the fact that FILE is up to date (this munges CVS/Base;
37    processing of CVS/Entries is done separately).  */
38 extern void mark_up_to_date PROTO ((char *file));
39