Module: wine Branch: master Commit: 3ff1686c442935a101aec4e34aae9ae99c58676e URL: https://source.winehq.org/git/wine.git/?a=commit;h=3ff1686c442935a101aec4e34...
Author: Austin English austinenglish@gmail.com Date: Thu Oct 29 05:00:44 2020 -0500
dx8vb: Add version resource.
Signed-off-by: Austin English austinenglish@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/dx8vb/Makefile.in | 2 ++ dlls/dx8vb/version.rc | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+)
diff --git a/dlls/dx8vb/Makefile.in b/dlls/dx8vb/Makefile.in index c11eb9ef428..727265c6983 100644 --- a/dlls/dx8vb/Makefile.in +++ b/dlls/dx8vb/Makefile.in @@ -7,3 +7,5 @@ C_SRCS = \ main.c
IDL_SRCS = dx8vb.idl + +RC_SRCS = version.rc diff --git a/dlls/dx8vb/version.rc b/dlls/dx8vb/version.rc new file mode 100644 index 00000000000..b87d8f8ad96 --- /dev/null +++ b/dlls/dx8vb/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 dx8vb" +#define WINE_FILENAME_STR "dx8vb.dll" +#define WINE_FILEVERSION 5,3,1,902 +#define WINE_FILEVERSION_STR "5.3.1.902" +#define WINE_PRODUCTVERSION 5,3,1,902 +#define WINE_PRODUCTVERSION_STR "5.3.1.902" + +#include "wine/wine_common_ver.rc"