Install g2hdr.bin and g2ldr.mbr.
[grub-extras.git] / utils.h
blob05ab114c953946a5cfe0e5b78f50260386c43008
1 /*
2 * GRUB Utilities -- Utilities for GRUB Legacy, GRUB2 and GRUB for DOS
3 * Copyright (C) 2007 Bean (bean123@126.com)
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __UTILS_H
21 #define __UTILS_H
23 #if defined(__cplusplus) || defined(c_plusplus)
24 extern "C" {
25 #endif
27 #define MAX_DISKS 10
28 #define MAX_PARTS 30
30 #define FST_OTHER 0
31 #define FST_MBR 1
32 #define FST_FAT16 2
33 #define FST_FAT32 3
34 #define FST_NTFS 4
35 #define FST_EXT2 5
37 typedef struct {
38 unsigned char cur; // Current partition number
39 unsigned char nxt; // Next partition number
40 unsigned char dfs; // File system flag
41 unsigned char pad; // Padding
42 unsigned long bse; // Partition start address
43 unsigned long len; // Partition length
44 unsigned long ebs; // Base address for the extended partition
45 } xde_t;
47 #define valueat(buf,ofs,type) *((type*)(((char*)&buf)+ofs))
49 extern int mbr_nhd, mbr_spt;
50 int go_sect(int,unsigned long);
51 int xd_enum(int,xde_t*);
52 int get_fstype(unsigned char*);
53 char* fst2str(int);
54 char* dfs2str(int);
56 #if defined(__cplusplus) || defined(c_plusplus)
58 #endif
59 #endif /* __UTILS_H */