From: Tim Clem tclem@codeweavers.com
--- dlls/msvcp140/version.rc | 7 +------ include/Makefile.in | 1 + include/wine/wine_msvcrt_ver.rc | 25 +++++++++++++++++++++++++ 3 files changed, 27 insertions(+), 6 deletions(-) create mode 100644 include/wine/wine_msvcrt_ver.rc
diff --git a/dlls/msvcp140/version.rc b/dlls/msvcp140/version.rc index 7e31ee4a5db..463300a8a40 100644 --- a/dlls/msvcp140/version.rc +++ b/dlls/msvcp140/version.rc @@ -16,11 +16,6 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */
-#define WINE_FILEDESCRIPTION_STR "Wine runtime library" #define WINE_FILENAME_STR "msvcp140.dll" -#define WINE_FILEVERSION 14,42,34433,0 -#define WINE_FILEVERSION_STR "14.42.34433.0" -#define WINE_PRODUCTVERSION 14,42,34433,0 -#define WINE_PRODUCTVERSION_STR "14.42.34433.0"
-#include "wine/wine_common_ver.rc" +#include "wine/wine_msvcrt_ver.rc" diff --git a/include/Makefile.in b/include/Makefile.in index ab4957969d3..3437a2bb08e 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -970,6 +970,7 @@ SOURCES = \ wine/winbase16.h \ wine/windef16.h \ wine/wine_common_ver.rc \ + wine/wine_msvcrt_ver.rc \ wine/winebth.h \ wine/wined3d.h \ wine/winedmo.h \ diff --git a/include/wine/wine_msvcrt_ver.rc b/include/wine/wine_msvcrt_ver.rc new file mode 100644 index 00000000000..5300dfd5500 --- /dev/null +++ b/include/wine/wine_msvcrt_ver.rc @@ -0,0 +1,25 @@ +/* + * Copyright 2024 Louis Lenders + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#define WINE_FILEDESCRIPTION_STR "Wine runtime library" +#define WINE_FILEVERSION 14,42,34433,0 +#define WINE_FILEVERSION_STR "14.42.34433.0" +#define WINE_PRODUCTVERSION 14,42,34433,0 +#define WINE_PRODUCTVERSION_STR "14.42.34433.0" + +#include "wine/wine_common_ver.rc"