Back to home page

Wine source

 
 

    


File indexing completed on 2019-02-11 01:31:51

b1abca8a5 Alex*0001 /*
                0002  * Definitions for Wine main program
                0003  *
497709b9b Fran*0004  * Copyright 2004 Mike McCormack for CodeWeavers
b1abca8a5 Alex*0005  * Copyright 2004 Alexandre Julliard
                0006  *
                0007  * This library is free software; you can redistribute it and/or
                0008  * modify it under the terms of the GNU Lesser General Public
                0009  * License as published by the Free Software Foundation; either
                0010  * version 2.1 of the License, or (at your option) any later version.
                0011  *
                0012  * This library is distributed in the hope that it will be useful,
                0013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
                0014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
                0015  * Lesser General Public License for more details.
                0016  *
                0017  * You should have received a copy of the GNU Lesser General Public
                0018  * License along with this library; if not, write to the Free Software
360a3f914 Jona*0019  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
b1abca8a5 Alex*0020  */
                0021 
                0022 #ifndef __WINE_LOADER_MAIN_H
                0023 #define __WINE_LOADER_MAIN_H
                0024 
                0025 struct wine_preload_info
                0026 {
                0027     void  *addr;
                0028     size_t size;
                0029 };
                0030 
                0031 #endif /* __WINE_LOADER_MAIN_H */