vga: Add stub dll.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48424 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
cdda133210
commit
24fe0b82df
|
@ -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)
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
MODULE = vga.dll
|
||||
|
||||
RC_SRCS = version.rc
|
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* 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"
|
|
@ -0,0 +1 @@
|
|||
# nothing
|
Loading…
Reference in New Issue