18751f1e64f0c95befdea205df9a6bb362a54df7
[citadel.git] / citadel / file_ops.h
1 /* $Id$ */
2 #ifndef FILE_OPS_H
3 #define FILE_OPS_H
4
5 #include "context.h"
6
7 void OpenCmdResult (char *, const char *);
8 void abort_upl (CitContext *who);
9
10 int network_talking_to(char *nodename, int operation);
11
12 /*
13  * Operations that can be performed by network_talking_to()
14  */
15 enum {
16         NTT_ADD,
17         NTT_REMOVE,
18         NTT_CHECK
19 };
20
21 #endif /* FILE_OPS_H */