Skip to content
Snippets Groups Projects
Commit 24fe0b82 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard
Browse files
parent cdda1332
No related branches found
No related tags found
No related merge requests found
......@@ -1613,6 +1613,7 @@ enable_vcruntime140
enable_vcruntime140_1
enable_vdmdbg
enable_version
enable_vga
enable_virtdisk
enable_vssapi
enable_vulkan_1
......@@ -20918,6 +20919,7 @@ wine_fn_config_makefile dlls/vdmdbg enable_vdmdbg
wine_fn_config_makefile dlls/ver.dll16 enable_win16
wine_fn_config_makefile dlls/version enable_version
wine_fn_config_makefile dlls/version/tests enable_tests
wine_fn_config_makefile dlls/vga enable_vga
wine_fn_config_makefile dlls/virtdisk enable_virtdisk
wine_fn_config_makefile dlls/virtdisk/tests enable_tests
wine_fn_config_makefile dlls/vmm.vxd enable_win16
......
......@@ -3724,6 +3724,7 @@ WINE_CONFIG_MAKEFILE(dlls/vdmdbg)
WINE_CONFIG_MAKEFILE(dlls/ver.dll16,enable_win16)
WINE_CONFIG_MAKEFILE(dlls/version)
WINE_CONFIG_MAKEFILE(dlls/version/tests)
WINE_CONFIG_MAKEFILE(dlls/vga)
WINE_CONFIG_MAKEFILE(dlls/virtdisk)
WINE_CONFIG_MAKEFILE(dlls/virtdisk/tests)
WINE_CONFIG_MAKEFILE(dlls/vmm.vxd,enable_win16)
......
MODULE = vga.dll
RC_SRCS = version.rc
/*
* Copyright 2020 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 vga DLL"
#define WINE_FILENAME_STR "vga.dll"
/* these values come from Windows 7 SP1 */
#define WINE_FILEVERSION 6,1,7600,16385
#define WINE_FILEVERSION_STR "6.1.7600.16385"
#define WINE_PRODUCTVERSION 6,1,7600,16385
#define WINE_PRODUCTVERSION_STR "6.1.7600.16385"
#include "wine/wine_common_ver.rc"
# nothing
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment