1 /* 2 * Shared Resource/DllGetVersion version information 3 * 4 * Copyright (C) 2004 Robert Shearman 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * 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 of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 */ 20 21 #pragma once 22 23 #if (NTDDI_VERSION < NTDDI_LONGHORN) 24 25 /* Version from Windows Server 2003 SP2 */ 26 27 #define WINE_FILEVERSION_MAJOR 6 28 #define WINE_FILEVERSION_MINOR 0 29 #define WINE_FILEVERSION_BUILD 3790 30 #define WINE_FILEVERSION_PLATFORMID 3959 31 32 /* FIXME: when libs/wpp gets fixed to support concatenation we can remove 33 * this and define it in version.rc */ 34 #define WINE_FILEVERSION_STR "6.0.3790.3959" 35 36 #else 37 38 /* Version from Windows Vista RTM */ 39 40 #define WINE_FILEVERSION_MAJOR 6 41 #define WINE_FILEVERSION_MINOR 0 42 #define WINE_FILEVERSION_BUILD 6000 43 #define WINE_FILEVERSION_PLATFORMID 16386 44 45 /* FIXME: when libs/wpp gets fixed to support concatenation we can remove 46 * this and define it in version.rc */ 47 #define WINE_FILEVERSION_STR "6.0.6000.16386" 48 49 #endif // NTDDI_VERSION 50