Add libvboxfs: VirtualBox shared folders library

This commit is contained in:
David van Moolenbroek
2012-04-09 19:20:37 +02:00
parent ef7b484e5c
commit bb4d055fa6
17 changed files with 1212 additions and 3 deletions

12
include/minix/vboxfs.h Normal file
View File

@@ -0,0 +1,12 @@
/* Part of libvboxfs - (c) 2012, D.C. van Moolenbroek */
#ifndef _MINIX_VBOXFS_H
#define _MINIX_VBOXFS_H
#include <minix/sffs.h>
int vboxfs_init(char *share, const struct sffs_table **tablep,
int *case_insens, int *read_only);
void vboxfs_cleanup(void);
#endif /* _MINIX_VBOXFS_H */