summaryrefslogtreecommitdiffstats
path: root/include/partition.h
blob: 8ad7490d855909ec3eb20f17abbfb1551cee7373 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __PARTITION_H
#define __PARTITION_H

struct device_d;

struct partition {
        int num;

	int flags;

        loff_t offset;

        struct device_d *physdev;
        struct device_d device;

        char name[16];
	struct cdev cdev;
};

#endif /* __PARTITION_H */