This Shared Folders File System library (libsffs) now contains all the file system logic originally in HGFS. The actual HGFS server code is now a stub that passes on all the work to libsffs. The libhgfs library is changed accordingly.
		
			
				
	
	
		
			13 lines
		
	
	
		
			238 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			238 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Part of libhgfs - (c) 2009, D.C. van Moolenbroek */
 | 
						|
 | 
						|
#include <minix/drivers.h>
 | 
						|
#include <minix/sffs.h>
 | 
						|
#include <minix/hgfs.h>
 | 
						|
 | 
						|
#define PREFIX(x) __libhgfs_##x
 | 
						|
 | 
						|
#include "type.h"
 | 
						|
#include "const.h"
 | 
						|
#include "proto.h"
 | 
						|
#include "glo.h"
 |