Adding upstream version 3.86+dfsg.
[syslinux-debian/hramrach.git] / com32 / gplinclude / disk / write.h
blob89d26fc65ca6782e818023ace8eb25814c683da3
1 /* ----------------------------------------------------------------------- *
3 * Copyright 2009 Pierre-Alexandre Meyer
5 * Some parts borrowed from chain.c32:
7 * Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
8 * Copyright 2009 Intel Corporation; author: H. Peter Anvin
10 * This file is part of Syslinux, and is made available under
11 * the terms of the GNU General Public License version 2.
13 * ----------------------------------------------------------------------- */
15 #ifndef _WRITE_H_
16 #define _WRITE_H_
18 #include <disk/geom.h>
20 int write_sectors(const struct driveinfo *, const unsigned int,
21 const void *, const int);
22 int write_verify_sector(struct driveinfo *drive_info,
23 const unsigned int, const void *);
24 int write_verify_sectors(struct driveinfo *,
25 const unsigned int, const void *, const int);
26 #endif