summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/libfat/libfatint.h
blob: adfad00b5bab9995c2f4c632a69cb427ce957856 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* ----------------------------------------------------------------------- *
 *
 *   Copyright 2004-2008 H. Peter Anvin - All Rights Reserved
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
 *   Boston MA 02111-1307, USA; either version 2 of the License, or
 *   (at your option) any later version; incorporated herein by reference.
 *
 * ----------------------------------------------------------------------- */

/*
 * libfatint.h
 *
 * Internals for the libfat filesystem
 */

#ifndef LIBFATINT_H
#define LIBFATINT_H

#include "libfat.h"
#include "fat.h"

struct libfat_sector {
    libfat_sector_t n;		/* Sector number */
    struct libfat_sector *next;	/* Next in list */
    char data[LIBFAT_SECTOR_SIZE];
};

enum fat_type {
    FAT12,
    FAT16,
    FAT28
};

struct libfat_filesystem {
    int (*read) (intptr_t, void *, size_t, libfat_sector_t);
    intptr_t readptr;

    enum fat_type fat_type;
    unsigned int clustsize;
    int clustshift;
    int32_t endcluster;		/* Highest legal cluster number + 1 */
    int32_t rootcluster;	/* Root directory cluster */

    libfat_sector_t fat;	/* Start of FAT */
    libfat_sector_t rootdir;	/* Start of root directory */
    libfat_sector_t data;	/* Start of data area */
    libfat_sector_t end;	/* End of filesystem */

    struct libfat_sector *sectors;
};

#endif /* LIBFATINT_H */