1 /* ----------------------------------------------------------------------- *
2  *
3  *   Copyright 2003-2009 H. Peter Anvin - All Rights Reserved
4  *   Copyright 2009-2010 Intel Corporation; author: H. Peter Anvin
5  *   Copyright 2010 Shao Miller
6  *   Copyright 2010-2012 Michal Soltys
7  *
8  *   This program is free software; you can redistribute it and/or modify
9  *   it under the terms of the GNU General Public License as published by
10  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
11  *   Boston MA 02111-1307, USA; either version 2 of the License, or
12  *   (at your option) any later version; incorporated herein by reference.
13  *
14  * ----------------------------------------------------------------------- */
15 
16 #ifndef COM32_CHAIN_CHAIN_H
17 #define COM32_CHAIN_CHAIN_H
18 
19 #include <syslinux/movebits.h>
20 
21 struct data_area {
22     void *data;
23     addr_t base;
24     addr_t size;
25 };
26 
27 #endif
28 
29 /* vim: set ts=8 sts=4 sw=4 noet: */
30