From: Dmitry Timoshkov dmitry@baikal.ru
This fixes dotnet35sp1 installation failure.
Signed-off-by: Dmitry Timoshkov dmitry@baikal.ru --- dlls/prntvpt/Makefile.in | 1 + dlls/prntvpt/prntvpt.rc | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 dlls/prntvpt/prntvpt.rc
diff --git a/dlls/prntvpt/Makefile.in b/dlls/prntvpt/Makefile.in index 846f70c0c16..051dba89775 100644 --- a/dlls/prntvpt/Makefile.in +++ b/dlls/prntvpt/Makefile.in @@ -4,4 +4,5 @@ IMPORTS = winspool ole32 oleaut32
SOURCES = \ main.c \ + prntvpt.rc \ ticket.c diff --git a/dlls/prntvpt/prntvpt.rc b/dlls/prntvpt/prntvpt.rc new file mode 100644 index 00000000000..df6cf687d87 --- /dev/null +++ b/dlls/prntvpt/prntvpt.rc @@ -0,0 +1,27 @@ +/* + * Copyright 2024 Dmitry Timoshkov + * + * 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 "prntpvt.dll" +#define WINE_FILEDESCRIPTION_STR "Print Ticket Services Module" +#define WINE_FILEVERSION 6,1,2600,5635 +#define WINE_FILEVERSION_STR "6.1.2600.5635" +#define WINE_PRODUCTVERSION 6,1,2600,5635 +#define WINE_PRODUCTVERSION_STR "6.1.2600.5635" + +#include "wine/wine_common_ver.rc"