summaryrefslogtreecommitdiff
path: root/com32/gplinclude/disk
diff options
context:
space:
mode:
authorPierre-Alexandre Meyer <pierre@mouraf.org>2009-04-26 14:09:18 -0700
committerPierre-Alexandre Meyer <pierre@mouraf.org>2009-04-26 14:09:18 -0700
commit262e71498984cd2518cde54961f92c12e2f5ad0a (patch)
treec34bdf48009a2c6eef926d1de8a8e60c6f6a6a3d /com32/gplinclude/disk
parent3ea01d1af4dd0c22b292ce887141a95c9d629f19 (diff)
downloadsyslinux-262e71498984cd2518cde54961f92c12e2f5ad0a.tar.gz
gpllib: Add parse_partition_table() to iterate through all partitions on a disk
Impact: expand gpllib disk API parse_partition_table() can be used to execute a callback on each partition. The signature of the callback is: void callback(struct driveinfo *drive_info, struct part_entry *ptab, struct part_entry *ptab_root, int offset_root, int local_partition_number, int ebr_seen) * drive_info represents the disk. * ptab is the current partition entry processed. * ptab_root is the partition entry linking to the current one processed (extended only). * offset_root is the offset of the ebr when iterating through extended partitions (0 otherwise). * local_partition_number is the number of the partition processed (0->3). * ebr_seen counts the total number of ebr processed. Signed-off-by: Pierre-Alexandre Meyer <pierre@mouraf.org>
Diffstat (limited to 'com32/gplinclude/disk')
-rw-r--r--com32/gplinclude/disk/msdos.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/com32/gplinclude/disk/msdos.h b/com32/gplinclude/disk/msdos.h
new file mode 100644
index 00000000..b6dd9481
--- /dev/null
+++ b/com32/gplinclude/disk/msdos.h
@@ -0,0 +1,8 @@
+#ifndef _MSDOS_H_
+#define _MSDOS_H_
+
+#include <disk/geom.h>
+
+int parse_partition_table(struct driveinfo *, void *, int *);
+
+#endif /* _MSDOS_H_ */