]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/volume.h
Use the right type for AFP function buffers size, size_t not int or unsigned int
[netatalk.git] / etc / afpd / volume.h
1 /*
2  * $Id: volume.h,v 1.36 2009-10-15 10:43:13 didg Exp $
3  *
4  * Copyright (c) 1990,1994 Regents of The University of Michigan.
5  * All Rights Reserved.  See COPYRIGHT.
6  */
7
8 #ifndef AFPD_VOLUME_H
9 #define AFPD_VOLUME_H 1
10
11 #include <sys/cdefs.h>
12 #include <sys/types.h>
13 #include <netatalk/endian.h>
14
15 #include <atalk/volume.h>
16 #include <atalk/cnid.h>
17 #include <atalk/unicode.h>
18
19 #include "globals.h"
20 #if 0
21 #include "hash.h"
22 #endif
23
24 extern struct vol       *getvolbyvid (const u_int16_t);
25 extern int              ustatfs_getvolspace (const struct vol *,
26             VolSpace *, VolSpace *,
27             u_int32_t *);
28 extern void             setvoltime (AFPObj *, struct vol *);
29 extern int              pollvoltime (AFPObj *);
30 extern void             load_volumes (AFPObj *obj);
31
32 /* FP functions */
33 int afp_openvol      (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
34 int afp_getvolparams (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
35 int afp_setvolparams (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
36 int afp_getsrvrparms (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
37 int afp_closevol     (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
38
39 /* netatalk functions */
40 extern void     close_all_vol   (void);
41
42 #endif