Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
wine
wine-winehq
Commits
faa6ca08
Commit
faa6ca08
authored
Aug 28, 2008
by
Jim Cameron
Committed by
Alexandre Julliard
Sep 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for IoGetDeviceObjectPointer().
parent
954cb314
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+9
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
wdm.h
include/ddk/wdm.h
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
faa6ca08
...
@@ -451,6 +451,15 @@ NTSTATUS WINAPI IoDeleteSymbolicLink( UNICODE_STRING *name )
...
@@ -451,6 +451,15 @@ NTSTATUS WINAPI IoDeleteSymbolicLink( UNICODE_STRING *name )
/***********************************************************************
/***********************************************************************
* IoGetDeviceObjectPointer (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
IoGetDeviceObjectPointer
(
UNICODE_STRING
*
name
,
ACCESS_MASK
access
,
PFILE_OBJECT
*
file
,
PDEVICE_OBJECT
*
device
)
{
FIXME
(
"stub: %s %x %p %p
\n
"
,
debugstr_us
(
name
),
access
,
file
,
device
);
return
STATUS_NOT_IMPLEMENTED
;
}
/***********************************************************************
* IofCompleteRequest (NTOSKRNL.EXE.@)
* IofCompleteRequest (NTOSKRNL.EXE.@)
*/
*/
#ifdef DEFINE_FASTCALL2_ENTRYPOINT
#ifdef DEFINE_FASTCALL2_ENTRYPOINT
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
faa6ca08
...
@@ -382,7 +382,7 @@
...
@@ -382,7 +382,7 @@
@ stub IoGetDeviceAttachmentBaseRef
@ stub IoGetDeviceAttachmentBaseRef
@ stub IoGetDeviceInterfaceAlias
@ stub IoGetDeviceInterfaceAlias
@ stub IoGetDeviceInterfaces
@ stub IoGetDeviceInterfaces
@ st
ub IoGetDeviceObjectPointer
@ st
dcall IoGetDeviceObjectPointer(ptr long ptr ptr)
@ stub IoGetDeviceProperty
@ stub IoGetDeviceProperty
@ stub IoGetDeviceToVerify
@ stub IoGetDeviceToVerify
@ stub IoGetDiskDeviceObject
@ stub IoGetDiskDeviceObject
...
...
include/ddk/wdm.h
View file @
faa6ca08
...
@@ -941,6 +941,7 @@ void WINAPI IoDeleteDriver(DRIVER_OBJECT*);
...
@@ -941,6 +941,7 @@ void WINAPI IoDeleteDriver(DRIVER_OBJECT*);
NTSTATUS
WINAPI
IoDeleteSymbolicLink
(
UNICODE_STRING
*
);
NTSTATUS
WINAPI
IoDeleteSymbolicLink
(
UNICODE_STRING
*
);
void
WINAPI
IoFreeIrp
(
IRP
*
);
void
WINAPI
IoFreeIrp
(
IRP
*
);
PEPROCESS
WINAPI
IoGetCurrentProcess
(
void
);
PEPROCESS
WINAPI
IoGetCurrentProcess
(
void
);
NTSTATUS
WINAPI
IoGetDeviceObjectPointer
(
UNICODE_STRING
*
,
ACCESS_MASK
,
PFILE_OBJECT
*
,
PDEVICE_OBJECT
*
);
void
WINAPI
IoInitializeIrp
(
IRP
*
,
USHORT
,
CCHAR
);
void
WINAPI
IoInitializeIrp
(
IRP
*
,
USHORT
,
CCHAR
);
PKTHREAD
WINAPI
KeGetCurrentThread
(
void
);
PKTHREAD
WINAPI
KeGetCurrentThread
(
void
);
...
...
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