1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #ifndef VERSIONING_H
30 #define VERSIONING_H
31
32 #include "../public/webdav.h"
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 int webdav_version_control(pblock *pb, Session *sn, Request *rq);
39 int webdav_checkout(pblock *pb, Session *sn, Request *rq);
40 int webdav_checkin(pblock *pb, Session *sn, Request *rq);
41 int webdav_uncheckout(pblock *pb, Session *sn, Request *rq);
42 int webdav_mkworkspace(pblock *pb, Session *sn, Request *rq);
43 int webdav_update(pblock *pb, Session *sn, Request *rq);
44 int webdav_label(pblock *pb, Session *sn, Request *rq);
45 int webdav_merge(pblock *pb, Session *sn, Request *rq);
46
47
48 #ifdef __cplusplus
49 }
50 #endif
51
52 #endif
53
54