1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
/*
AVFS: A Virtual File System Library
Copyright (C) 2000-2001 Miklos Szeredi <miklos@szeredi.hu>
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
*/
#include "avfs.h"
#include "namespace.h"
struct statefile {
void *data;
int (*get) (struct entry *ent, const char *param, char **resp);
int (*set) (struct entry *ent, const char *param, const char *val);
};
int av_state_new(struct vmodule *module, const char *name,
struct namespace **resp, struct avfs **avfsp);
|