1
0
Fork 0
forked from len0rd/rockbox

Allow LBA-less partitions

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1364 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2002-07-16 08:48:16 +00:00
parent d1de4f8d38
commit 761cd95f23
2 changed files with 4 additions and 2 deletions

View file

@ -25,7 +25,8 @@ struct partinfo {
unsigned char type;
};
#define PARTITION_TYPE_FAT32 0x0c
#define PARTITION_TYPE_FAT32 0x0b
#define PARTITION_TYPE_FAT32_LBA 0x0c
/* returns a pointer to an array of 8 partinfo structs */
struct partinfo* disk_init(void);