home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
CMDS
/
mtools_3.6.src.lzh
/
MTOOLS_3.6
/
fs.h
< prev
next >
Wrap
Text File
|
1997-11-12
|
476b
|
26 lines
#ifndef MTOOLS_FS_H
#define MTOOLS_FS_H
#include "stream.h"
typedef struct FsPublic_t {
Class_t *Class;
int refs;
Stream_t *Next;
Stream_t *Buffer;
int serialized;
unsigned long serial_number;
int cluster_size;
int sector_size;
} FsPublic_t;
Stream_t *fs_init(char drive, int mode);
int fat_free(Stream_t *Dir, unsigned int fat);
int fatFreeWithDir(Stream_t *Dir, struct directory *dir);
int fat_error(Stream_t *Dir);
int fat32RootCluster(Stream_t *Dir);
#endif