Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ee67d124
Commit
ee67d124
authored
Oct 13, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for IoAcquireRemoveLockEx.
parent
6d62cc12
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+16
-2
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
ee67d124
...
...
@@ -1787,7 +1787,7 @@ POWER_STATE WINAPI PoSetPowerState(PDEVICE_OBJECT DeviceObject, POWER_STATE_TYPE
*/
NTSTATUS
WINAPI
IoWMIRegistrationControl
(
PDEVICE_OBJECT
DeviceObject
,
ULONG
Action
)
{
FIXME
(
"(%p %u
) stub
\n
"
,
DeviceObject
,
Action
);
FIXME
(
"(%p %u) stub
\n
"
,
DeviceObject
,
Action
);
return
STATUS_SUCCESS
;
}
...
...
@@ -1824,11 +1824,25 @@ BOOLEAN WINAPI IoSetThreadHardErrorMode(BOOLEAN EnableHardErrors)
* IoInitializeRemoveLockEx (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
IoInitializeRemoveLockEx
(
PIO_REMOVE_LOCK
lock
,
ULONG
tag
,
ULONG
maxmin
,
ULONG
high
,
ULONG
size
)
ULONG
maxmin
,
ULONG
high
,
ULONG
size
)
{
FIXME
(
"(%p %u %u %u %u) stub
\n
"
,
lock
,
tag
,
maxmin
,
high
,
size
);
}
/*****************************************************
* IoAcquireRemoveLockEx (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
IoAcquireRemoveLockEx
(
PIO_REMOVE_LOCK
lock
,
PVOID
tag
,
LPCSTR
file
,
ULONG
line
,
ULONG
lock_size
)
{
FIXME
(
"(%p, %p, %s, %u, %u): stub
\n
"
,
lock
,
tag
,
debugstr_a
(
file
),
line
,
lock_size
);
return
STATUS_NOT_IMPLEMENTED
;
}
/*****************************************************
* DllMain
*/
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
ee67d124
...
...
@@ -304,7 +304,7 @@
@ stub InbvSolidColorFill
@ stub InitSafeBootMode
@ stdcall IoAcquireCancelSpinLock(ptr)
@ st
ub IoAcquireRemoveLockEx
@ st
dcall IoAcquireRemoveLockEx(ptr ptr ptr long long)
@ stub IoAcquireVpbSpinLock
@ stub IoAdapterObjectType
@ stub IoAllocateAdapterChannel
...
...
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