1 /* ----------------------------------------------------------------------- *
3 * Copyright 2009 Pierre-Alexandre Meyer
5 * Some parts borrowed from chain.c32:
7 * Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
8 * Copyright 2009 Intel Corporation; author: H. Peter Anvin
10 * This file is part of Syslinux, and is made available under
11 * the terms of the GNU General Public License version 2.
13 * ----------------------------------------------------------------------- */
20 #define PARTITION_TABLES_OFFSET 0x1be
22 /* A DOS partition table entry */
24 uint8_t active_flag
; /* 0x80 if "active" */
34 } __attribute__ ((packed
));
36 void get_label(int label
, char **buffer_label
);
37 #endif /* _PARTITION_H_ */