summaryrefslogtreecommitdiffstats
path: root/partx/dos.h
blob: 429f3d3910c6c8705b2de547591c0a99ba7413c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef DOS_H_INCLUDED
#define DOS_H_INCLUDED

struct partition {
	unsigned char boot_ind;	/* 0x80 - active */
	unsigned char bh, bs, bc;
	unsigned char sys_type;
	unsigned char eh, es, ec;
	unsigned int start_sect;
	unsigned int nr_sects;
};

#endif				/* DOS_H_INCLUDED */