Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aleksandr Isakov
wine-fonts
Commits
c9b64853
Commit
c9b64853
authored
Jun 08, 2017
by
Michael Müller
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgmms1.sys: Add stub driver.
parent
772ecffb
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
50 additions
and
0 deletions
+50
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/dxgmms1.sys/Makefile.in
+6
-0
dxgmms1.sys.spec
dlls/dxgmms1.sys/dxgmms1.sys.spec
+2
-0
main.c
dlls/dxgmms1.sys/main.c
+39
-0
No files found.
configure
View file @
c9b64853
...
...
@@ -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
...
...
configure.ac
View file @
c9b64853
...
...
@@ -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)
...
...
dlls/dxgmms1.sys/Makefile.in
0 → 100644
View file @
c9b64853
MODULE
=
dxgmms1.sys
IMPORTS
=
ntoskrnl
EXTRADLLFLAGS
=
-mno-cygwin
-Wb
,--subsystem,native
C_SRCS
=
\
main.c
dlls/dxgmms1.sys/dxgmms1.sys.spec
0 → 100644
View file @
c9b64853
@ stub VidMmInterface
@ stub VidSchInterface
dlls/dxgmms1.sys/main.c
0 → 100644
View file @
c9b64853
/*
* 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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment