From: Tim Clem tclem@codeweavers.com
--- dlls/vcruntime140/Makefile.in | 3 ++- dlls/vcruntime140/version.rc | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 dlls/vcruntime140/version.rc
diff --git a/dlls/vcruntime140/Makefile.in b/dlls/vcruntime140/Makefile.in index 1f99225ffe8..e49bbc2b19d 100644 --- a/dlls/vcruntime140/Makefile.in +++ b/dlls/vcruntime140/Makefile.in @@ -2,4 +2,5 @@ MODULE = vcruntime140.dll IMPORTLIB = vcruntime140
SOURCES = \ - misc.c + misc.c \ + version.rc diff --git a/dlls/vcruntime140/version.rc b/dlls/vcruntime140/version.rc new file mode 100644 index 00000000000..b119b32dd80 --- /dev/null +++ b/dlls/vcruntime140/version.rc @@ -0,0 +1,21 @@ +/* + * Copyright 2025 Tim Clem + * + * 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_FILENAME_STR "vcruntime140.dll" + +#include "wine/wine_msvcrt_ver.rc"