915resolution: Fix build failure with GCC 9
[grub-extras.git] / ntldr-img / utils.h
blobe48aac8a9d48ac6ac5528bc84c0b1644dd4c80bb
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 } __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);
60 static inline void
61 set16 (void *buf_, unsigned offset, unsigned short val)
63 unsigned char *buf = (unsigned char *) buf_ + offset;
64 buf[0] = val;
65 buf[1] = val >> 8;
68 static inline void
69 set32 (void *buf_, unsigned offset, unsigned int val)
71 unsigned char *buf = (unsigned char *) buf_ + offset;
72 buf[0] = val;
73 buf[1] = val >> 8;
74 buf[2] = val >> 16;
75 buf[3] = val >> 24;
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)
87 #endif
88 #endif /* __UTILS_H */