20 lines
390 B
C
20 lines
390 B
C
// fat12.h
|
|
// Author: Josh Holtrop
|
|
// Created: 01/04/04
|
|
|
|
|
|
typedef struct {
|
|
dword location;
|
|
} __attribute__((packed)) Fat12File;
|
|
|
|
typedef struct {
|
|
dword location;
|
|
} __attribute__((packed)) Fat12Directory;
|
|
|
|
|
|
byte *fat12_readFile(char *fileName, DiskDevice *dd);
|
|
Fat12File *fat12_getFileHandle(char *fileName);
|
|
Fat12Directory *fat12_getDirectoryHandle(char *directory);
|
|
|
|
|