diff options
author | Michael I. Bushnell <mib@gnu.org> | 1994-07-19 23:34:40 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1994-07-19 23:34:40 +0000 |
commit | cee03de4179f175f7fada7b5fecfc85bbba41c95 (patch) | |
tree | 6027188688af47b4ba9084b0fa3c1bae46cfe13e | |
parent | 15b7a61bfcb30e95c12c1cb914173b56c30dc256 (diff) |
Initial revision
-rw-r--r-- | libdirmgt/dirmgt.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libdirmgt/dirmgt.h b/libdirmgt/dirmgt.h new file mode 100644 index 00000000..566b0233 --- /dev/null +++ b/libdirmgt/dirmgt.h @@ -0,0 +1,41 @@ +/* + Copyright (C) 1994 Free Software Foundation + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2, or (at + your option) any later version. + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/* This library manages directories for users who want to + write filesystem servers. */ + + +/* Search directory DIR for name NAME. If NODEP is nonzero, then + set *NODEP to the node found. If TYPE is nonzero, then + set *TYPE to the type of the node found. */ +error_t +dirmgt_lookup (struct directory *dir, char *name, struct node **nodep, + int *type); + +/* Add NODE to DIR under name NAME. If NAME is already present in + the directory, the existing entry under that name is replaced without + further notice. TYPE is the DT_* name for the type of node. */ +error_t +dirmgt_enter (struct directory *dir, char *name, struct node *node, + int type); + +/* Return directory contents to a user; args are exactly as for + the fs.defs:dir_readdir RPC. */ +error_t +dirmgt_readdir (struct directory *dir, char **data, u_int *datacnt, + int entry, int nentries, vm_size_t bufsiz, int *amt); + |