mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
fb87fbb11d
[ntoskrnl-Stubs] Removed patch to add stub for KeDelayExecutionThread (fixed upstream). Removed patch to add stub for PsRemoveLoadImageNotifyRoutine (fixed upstream). [wined3d-Geforce_425M] Removed patch to add wined3d detection for GeForce GT 425M (accepted upstream).
48 lines
1.6 KiB
Diff
48 lines
1.6 KiB
Diff
From a6a3dee1aaa6276cd845043835dbd52098e5579a Mon Sep 17 00:00:00 2001
|
|
From: Jarkko Korpi <jarkko_korpi@hotmail.com>
|
|
Date: Sat, 19 Mar 2016 21:54:19 +0200
|
|
Subject: ntoskrnl.exe: Add IoGetDeviceAttachmentBaseRef stub.
|
|
|
|
---
|
|
dlls/ntoskrnl.exe/ntoskrnl.c | 10 ++++++++++
|
|
dlls/ntoskrnl.exe/ntoskrnl.exe.spec | 2 +-
|
|
2 files changed, 11 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c
|
|
index 3bee2bf..9232ba6 100644
|
|
--- a/dlls/ntoskrnl.exe/ntoskrnl.c
|
|
+++ b/dlls/ntoskrnl.exe/ntoskrnl.c
|
|
@@ -993,6 +993,16 @@ NTSTATUS WINAPI IoDeleteSymbolicLink( UNICODE_STRING *name )
|
|
|
|
|
|
/***********************************************************************
|
|
+ * IoGetDeviceAttachmentBaseRef (NTOSKRNL.EXE.@)
|
|
+ */
|
|
+PDEVICE_OBJECT WINAPI IoGetDeviceAttachmentBaseRef( PDEVICE_OBJECT device )
|
|
+{
|
|
+ FIXME( "(%p): stub\n", device );
|
|
+ return NULL;
|
|
+}
|
|
+
|
|
+
|
|
+/***********************************************************************
|
|
* IoGetDeviceInterfaces (NTOSKRNL.EXE.@)
|
|
*/
|
|
NTSTATUS WINAPI IoGetDeviceInterfaces( const GUID *InterfaceClassGuid,
|
|
diff --git a/dlls/ntoskrnl.exe/ntoskrnl.exe.spec b/dlls/ntoskrnl.exe/ntoskrnl.exe.spec
|
|
index 1414c53..c567b14 100644
|
|
--- a/dlls/ntoskrnl.exe/ntoskrnl.exe.spec
|
|
+++ b/dlls/ntoskrnl.exe/ntoskrnl.exe.spec
|
|
@@ -379,7 +379,7 @@
|
|
@ stub IoGetBootDiskInformation
|
|
@ stdcall IoGetConfigurationInformation()
|
|
@ stdcall IoGetCurrentProcess()
|
|
-@ stub IoGetDeviceAttachmentBaseRef
|
|
+@ stdcall IoGetDeviceAttachmentBaseRef(ptr)
|
|
@ stub IoGetDeviceInterfaceAlias
|
|
@ stdcall IoGetDeviceInterfaces(ptr ptr long ptr)
|
|
@ stdcall IoGetDeviceObjectPointer(ptr long ptr ptr)
|
|
--
|
|
2.7.1
|
|
|