Module: wine Branch: master Commit: bc1d3e67b175e7c8d23d0361a8e06abd314c72bc URL: https://source.winehq.org/git/wine.git/?a=commit;h=bc1d3e67b175e7c8d23d0361a...
Author: Austin English austinenglish@gmail.com Date: Thu Oct 29 05:00:48 2020 -0500
strmdll: Add version resource.
Signed-off-by: Austin English austinenglish@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/strmdll/Makefile.in | 2 ++ dlls/strmdll/version.rc | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+)
diff --git a/dlls/strmdll/Makefile.in b/dlls/strmdll/Makefile.in index 2eded8bf433..f710169b6ab 100644 --- a/dlls/strmdll/Makefile.in +++ b/dlls/strmdll/Makefile.in @@ -4,3 +4,5 @@ EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \ main.c + +RC_SRCS = version.rc diff --git a/dlls/strmdll/version.rc b/dlls/strmdll/version.rc new file mode 100644 index 00000000000..eebae122c80 --- /dev/null +++ b/dlls/strmdll/version.rc @@ -0,0 +1,26 @@ +/* + * Copyright 2020 Austin English + * + * 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 strmdll" +#define WINE_FILENAME_STR "strmdll.dll" +#define WINE_FILEVERSION 4,1,0,3936 +#define WINE_FILEVERSION_STR "4.1.0.3936" +#define WINE_PRODUCTVERSION 4,1,0,3936 +#define WINE_PRODUCTVERSION_STR "4.1.0.3936" + +#include "wine/wine_common_ver.rc"