X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Ffile_ops.h;h=a2483a126e115446026c5a1c67ffcd85849437a5;hb=da1debddf5988512ac50ff0b62ac85c8f3b8d0f4;hp=6f95c1374444bda216df159856334300d4ed22f1;hpb=f95401b73d6f0c34dd00639be58fa8731e6959e9;p=citadel.git diff --git a/citadel/file_ops.h b/citadel/file_ops.h index 6f95c1374..a2483a126 100644 --- a/citadel/file_ops.h +++ b/citadel/file_ops.h @@ -1,8 +1,12 @@ -/* $Id$ */ +#ifndef FILE_OPS_H +#define FILE_OPS_H + +#include "context.h" + void OpenCmdResult (char *, const char *); -void abort_upl (struct CitContext *who); +void abort_upl (CitContext *who); -int network_talking_to(char *nodename, int operation); +int network_talking_to(const char *nodename, long len, int operation); /* * Operations that can be performed by network_talking_to() @@ -12,3 +16,5 @@ enum { NTT_REMOVE, NTT_CHECK }; + +#endif /* FILE_OPS_H */