Hello user process
This commit is contained in:
@ -5,6 +5,7 @@
|
||||
#include <stdbool.h>
|
||||
|
||||
struct VfsMountPoint;
|
||||
struct VfsStat;
|
||||
|
||||
#define KVFS_NODE_KEY_MAX 128
|
||||
#define KVFS_NODES_MAX 256
|
||||
@ -21,6 +22,7 @@ typedef struct {
|
||||
} Kvfs;
|
||||
|
||||
int32_t kvfs_read(struct VfsMountPoint *vmp, const char *key, uint8_t *const buffer, size_t n, size_t off);
|
||||
int32_t kvfs_stat(struct VfsMountPoint *vmp, const char *key, struct VfsStat *stat);
|
||||
int32_t kvfs_write(struct VfsMountPoint *vmp, const char *key, const uint8_t *const buffer, size_t n, size_t off);
|
||||
int32_t kvfs_remove(struct VfsMountPoint *vmp, const char *key);
|
||||
int32_t kvfs_create(struct VfsMountPoint *vmp, const char *path, int32_t type);
|
||||
|
Reference in New Issue
Block a user