/*1* Definitions for Wine main program2*3* Copyright 2004 Mike McCormack for CodeWeavers4* Copyright 2004 Alexandre Julliard5*6* This library is free software; you can redistribute it and/or7* modify it under the terms of the GNU Lesser General Public8* License as published by the Free Software Foundation; either9* version 2.1 of the License, or (at your option) any later version.10*11* This library is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU14* Lesser General Public License for more details.15*16* You should have received a copy of the GNU Lesser General Public17* License along with this library; if not, write to the Free Software18* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA19*/2021#ifndef __WINE_LOADER_MAIN_H22#define __WINE_LOADER_MAIN_H2324struct wine_preload_info25{26void *addr;27size_t size;28};2930#endif /* __WINE_LOADER_MAIN_H */313233