summaryrefslogtreecommitdiff
path: root/com32/include/syslinux/movebits.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-02-12 16:39:17 -0800
committerH. Peter Anvin <hpa@zytor.com>2008-02-12 16:41:24 -0800
commit34baf2cd22bc9fad670d987aa84199f92a55f30a (patch)
treeebcb50c1c589ccee7e15bb51a284d03359c080ed /com32/include/syslinux/movebits.h
parent1372e76746ad609fccaaddcfeed1451650c666af (diff)
downloadsyslinux-34baf2cd22bc9fad670d987aa84199f92a55f30a.tar.gz
Move the prototypes for syslinux_shuffle_boot_*()
Move the prototypes for syslinux_shuffle_boot_[pr]m() from <syslinux/movebits.h> to <syslinux/boot[pr]m.h>, which anyway has the required structure definitions. #include <syslinux/movebits.h> in those files instead of relying on forward structure definitions.
Diffstat (limited to 'com32/include/syslinux/movebits.h')
-rw-r--r--com32/include/syslinux/movebits.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/com32/include/syslinux/movebits.h b/com32/include/syslinux/movebits.h
index 60fcebd7..f35ef228 100644
--- a/com32/include/syslinux/movebits.h
+++ b/com32/include/syslinux/movebits.h
@@ -43,10 +43,6 @@ struct syslinux_memmap {
};
-/* Defined in <syslinux/bootpm.h> and <syslinux/bootrm.h> respectively */
-struct syslinux_pm_regs;
-struct syslinux_rm_regs;
-
/*
* moves is computed from "fraglist" and "memmap". Areas that are
* to be zeroed should be marked as such in the memmap, not in the
@@ -65,14 +61,6 @@ int syslinux_allocate_from_list(struct syslinux_movelist **freelist,
addr_t dst, addr_t len);
int syslinux_prepare_shuffle(struct syslinux_movelist *fraglist,
struct syslinux_memmap *memmap);
-int syslinux_shuffle_boot_rm(struct syslinux_movelist *fraglist,
- struct syslinux_memmap *memmap,
- uint16_t bootflags,
- struct syslinux_rm_regs *regs);
-int syslinux_shuffle_boot_pm(struct syslinux_movelist *fraglist,
- struct syslinux_memmap *memmap,
- uint16_t bootflags,
- struct syslinux_pm_regs *regs);
/* Operatons on struct syslinux_memmap */
struct syslinux_memmap *syslinux_init_memmap(void);