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.
23 #if defined(__cplusplus) || defined(c_plusplus)
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 } __attribute__ ((packed
)) xde_t
;
47 static inline unsigned short
48 get16 (const void *buf_
, unsigned offset
)
50 unsigned char *buf
= (unsigned char *) buf_
+ offset
;
51 return buf
[0] | (buf
[1] << 8);
53 static inline unsigned int
54 get32 (const void *buf_
, unsigned offset
)
56 unsigned char *buf
= (unsigned char *) buf_
+ offset
;
57 return buf
[0] | (buf
[1] << 8) | (buf
[1] << 16) | (buf
[1] << 24);
61 set16 (void *buf_
, unsigned offset
, unsigned short val
)
63 unsigned char *buf
= (unsigned char *) buf_
+ offset
;
69 set32 (void *buf_
, unsigned offset
, unsigned int val
)
71 unsigned char *buf
= (unsigned char *) buf_
+ offset
;
78 extern int mbr_nhd
, mbr_spt
;
79 int go_sect(int,unsigned long);
80 int xd_enum(int,xde_t
*);
81 int get_fstype(unsigned char*);
82 const char* fst2str(int);
83 const char* dfs2str(int);
85 #if defined(__cplusplus) || defined(c_plusplus)
88 #endif /* __UTILS_H */