Commit c9b64853 authored by Michael Müller's avatar Michael Müller Committed by Vitaly Lipatov

dxgmms1.sys: Add stub driver.

parent 772ecffb
......@@ -1066,6 +1066,7 @@ enable_dx8vb
enable_dxdiagn
enable_dxgi
enable_dxgkrnl_sys
enable_dxgmms1_sys
enable_dxtrans
enable_dxva2
enable_esent
......@@ -19227,6 +19228,7 @@ wine_fn_config_makefile dlls/dxdiagn/tests enable_tests
wine_fn_config_makefile dlls/dxgi enable_dxgi
wine_fn_config_makefile dlls/dxgi/tests enable_tests
wine_fn_config_makefile dlls/dxgkrnl.sys enable_dxgkrnl_sys
wine_fn_config_makefile dlls/dxgmms1.sys enable_dxgmms1_sys
wine_fn_config_makefile dlls/dxtrans enable_dxtrans
wine_fn_config_makefile dlls/dxva2 enable_dxva2
wine_fn_config_makefile dlls/dxva2/tests enable_tests
......
......@@ -2648,6 +2648,7 @@ WINE_CONFIG_MAKEFILE(dlls/dxdiagn/tests)
WINE_CONFIG_MAKEFILE(dlls/dxgi)
WINE_CONFIG_MAKEFILE(dlls/dxgi/tests)
WINE_CONFIG_MAKEFILE(dlls/dxgkrnl.sys)
WINE_CONFIG_MAKEFILE(dlls/dxgmms1.sys)
WINE_CONFIG_MAKEFILE(dlls/dxtrans)
WINE_CONFIG_MAKEFILE(dlls/dxva2)
WINE_CONFIG_MAKEFILE(dlls/dxva2/tests)
......
MODULE = dxgmms1.sys
IMPORTS = ntoskrnl
EXTRADLLFLAGS = -mno-cygwin -Wb,--subsystem,native
C_SRCS = \
main.c
@ stub VidMmInterface
@ stub VidSchInterface
/*
* dxgmms1.sys driver
*
* Copyright 2017 Michael Müller
*
* 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
*/
#include <stdarg.h>
#define NONAMELESSUNION
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winbase.h"
#include "winternl.h"
#include "ddk/wdm.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(dxgmms1);
NTSTATUS WINAPI DriverEntry( DRIVER_OBJECT *driver, UNICODE_STRING *path )
{
TRACE( "(%p, %s)\n", driver, debugstr_w(path->Buffer) );
return STATUS_SUCCESS;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment