5 #include <disk/common.h>
6 #include <disk/partition.h>
8 #define SWSUSP_SIG "S1SUSPEND"
10 struct swsusp_header
{
11 char reserved
[PAGE_SIZE
- 20 - sizeof(unsigned long) - sizeof(int)];
13 unsigned int flags
; /* Flags to pass to the "boot" kernel */
16 } __attribute__ ((packed
));
18 int swsusp_check(struct driveinfo
*, struct part_entry
*);
19 #endif /* _SWSUSP_H */