Bring cvs-1.12.9 into the CVS repository
[dragonfly.git] / contrib / cvs-1.12.9 / src / edit.h
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 (int argc, char **argv);
14 extern int watch_off (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 (const char *repository, const 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 (int type, const char *filename, const char *who,
29                        const char *val, const char *watches,
30                        const char *repository);
31
32 /* Set attributes to reflect the fact that EDITOR is editing FILENAME.
33    VAL is time+host+directory, or NULL if we are to say that EDITOR is
34    *not* editing FILENAME.  */
35 extern void editor_set (const char *filename, const char *editor,
36                         const char *val);
37
38 /* Take note of the fact that FILE is up to date (this munges CVS/Base;
39    processing of CVS/Entries is done separately).  */
40 extern void mark_up_to_date (const char *file);