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
0a7ab984
Commit
0a7ab984
authored
Sep 29, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for MmProbeAndLockPages.
parent
b1fc2182
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
3 deletions
+21
-3
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+10
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
wdm.h
include/ddk/wdm.h
+10
-2
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
0a7ab984
...
@@ -1454,6 +1454,16 @@ PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection)
...
@@ -1454,6 +1454,16 @@ PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection)
return
AddrInSection
;
return
AddrInSection
;
}
}
/***********************************************************************
* MmProbeAndLockPages (NTOSKRNL.EXE.@)
*/
void
MmProbeAndLockPages
(
PMDLX
MemoryDescriptorList
,
KPROCESSOR_MODE
AccessMode
,
LOCK_OPERATION
Operation
)
{
FIXME
(
"(%p, %u, %u): stub
\n
"
,
MemoryDescriptorList
,
AccessMode
,
Operation
);
}
/***********************************************************************
/***********************************************************************
* MmResetDriverPaging (NTOSKRNL.EXE.@)
* MmResetDriverPaging (NTOSKRNL.EXE.@)
*/
*/
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
0a7ab984
...
@@ -702,7 +702,7 @@
...
@@ -702,7 +702,7 @@
@ stub MmMarkPhysicalMemoryAsGood
@ stub MmMarkPhysicalMemoryAsGood
@ stdcall MmPageEntireDriver(ptr)
@ stdcall MmPageEntireDriver(ptr)
@ stub MmPrefetchPages
@ stub MmPrefetchPages
@ st
ub MmProbeAndLockPages
@ st
dcall MmProbeAndLockPages(ptr long long)
@ stub MmProbeAndLockProcessPages
@ stub MmProbeAndLockProcessPages
@ stub MmProbeAndLockSelectedPages
@ stub MmProbeAndLockSelectedPages
@ stub MmProtectMdlSystemAddress
@ stub MmProtectMdlSystemAddress
...
...
include/ddk/wdm.h
View file @
0a7ab984
...
@@ -966,6 +966,8 @@ typedef struct _MDL {
...
@@ -966,6 +966,8 @@ typedef struct _MDL {
ULONG
ByteOffset
;
ULONG
ByteOffset
;
}
MDL
,
*
PMDL
;
}
MDL
,
*
PMDL
;
typedef
MDL
*
PMDLX
;
typedef
struct
_KTIMER
{
typedef
struct
_KTIMER
{
DISPATCHER_HEADER
Header
;
DISPATCHER_HEADER
Header
;
ULARGE_INTEGER
DueTime
;
ULARGE_INTEGER
DueTime
;
...
@@ -1088,10 +1090,16 @@ typedef struct _IO_REMOVE_LOCK_DBG_BLOCK {
...
@@ -1088,10 +1090,16 @@ typedef struct _IO_REMOVE_LOCK_DBG_BLOCK {
}
IO_REMOVE_LOCK_DBG_BLOCK
;
}
IO_REMOVE_LOCK_DBG_BLOCK
;
typedef
struct
_IO_REMOVE_LOCK
{
typedef
struct
_IO_REMOVE_LOCK
{
IO_REMOVE_LOCK_COMMON_BLOCK
Common
;
IO_REMOVE_LOCK_COMMON_BLOCK
Common
;
IO_REMOVE_LOCK_DBG_BLOCK
Dbg
;
IO_REMOVE_LOCK_DBG_BLOCK
Dbg
;
}
IO_REMOVE_LOCK
,
*
PIO_REMOVE_LOCK
;
}
IO_REMOVE_LOCK
,
*
PIO_REMOVE_LOCK
;
typedef
enum
{
IoReadAccess
,
IoWriteAccess
,
IoModifyAccess
}
LOCK_OPERATION
;
NTSTATUS
WINAPI
ObCloseHandle
(
IN
HANDLE
handle
);
NTSTATUS
WINAPI
ObCloseHandle
(
IN
HANDLE
handle
);
#ifdef NONAMELESSUNION
#ifdef NONAMELESSUNION
...
...
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