Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
34c49777
Commit
34c49777
authored
13 years ago
by
Stefan Leichter
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ntoskrnl.exe: Add stub for IoInitializeRemoveLockEx.
parent
ecbe1ff2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/ntoskrnl.exe/ntoskrnl.c
+10
-0
10 additions, 0 deletions
dlls/ntoskrnl.exe/ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
1 addition, 1 deletion
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
include/ddk/wdm.h
+28
-0
28 additions, 0 deletions
include/ddk/wdm.h
with
39 additions
and
1 deletion
dlls/ntoskrnl.exe/ntoskrnl.c
+
10
−
0
View file @
34c49777
...
...
@@ -1700,6 +1700,16 @@ BOOLEAN WINAPI IoSetThreadHardErrorMode(BOOLEAN EnableHardErrors)
return
FALSE
;
}
/*****************************************************
* IoInitializeRemoveLockEx (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
IoInitializeRemoveLockEx
(
PIO_REMOVE_LOCK
lock
,
ULONG
tag
,
ULONG
maxmin
,
ULONG
high
,
ULONG
size
)
{
FIXME
(
"(%p %u %u %u %u) stub
\n
"
,
lock
,
tag
,
maxmin
,
high
,
size
);
}
/*****************************************************
* DllMain
*/
...
...
This diff is collapsed.
Click to expand it.
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+
1
−
1
View file @
34c49777
...
...
@@ -398,7 +398,7 @@
@ stub IoGetStackLimits
@ stub IoGetTopLevelIrp
@ stdcall IoInitializeIrp(ptr long long)
@ st
ub
IoInitializeRemoveLockEx
@ st
dcall
IoInitializeRemoveLockEx
(ptr long long long long)
@ stdcall IoInitializeTimer(ptr ptr ptr)
@ stub IoInvalidateDeviceRelations
@ stub IoInvalidateDeviceState
...
...
This diff is collapsed.
Click to expand it.
include/ddk/wdm.h
+
28
−
0
View file @
34c49777
...
...
@@ -1065,6 +1065,33 @@ typedef enum _MM_SYSTEM_SIZE
MmLargeSystem
}
MM_SYSTEMSIZE
;
typedef
struct
_IO_REMOVE_LOCK_COMMON_BLOCK
{
BOOLEAN
Removed
;
BOOLEAN
Reserved
[
3
];
LONG
IoCount
;
KEVENT
RemoveEvent
;
}
IO_REMOVE_LOCK_COMMON_BLOCK
;
typedef
struct
_IO_REMOVE_LOCK_TRACKING_BLOCK
*
PIO_REMOVE_LOCK_TRACKING_BLOCK
;
typedef
struct
_IO_REMOVE_LOCK_DBG_BLOCK
{
LONG
Signature
;
LONG
HighWatermark
;
LONGLONG
MaxLockedTicks
;
LONG
AllocateTag
;
LIST_ENTRY
LockList
;
KSPIN_LOCK
Spin
;
LONG
LowMemoryCount
;
ULONG
Reserved1
[
4
];
PVOID
Reserved2
;
PIO_REMOVE_LOCK_TRACKING_BLOCK
Blocks
;
}
IO_REMOVE_LOCK_DBG_BLOCK
;
typedef
struct
_IO_REMOVE_LOCK
{
IO_REMOVE_LOCK_COMMON_BLOCK
Common
;
IO_REMOVE_LOCK_DBG_BLOCK
Dbg
;
}
IO_REMOVE_LOCK
,
*
PIO_REMOVE_LOCK
;
NTSTATUS
WINAPI
ObCloseHandle
(
IN
HANDLE
handle
);
#ifdef NONAMELESSUNION
...
...
@@ -1125,6 +1152,7 @@ NTSTATUS WINAPI IoGetDeviceProperty(PDEVICE_OBJECT,DEVICE_REGISTRY_PROPERTY,ULO
PVOID
WINAPI
IoGetDriverObjectExtension
(
PDRIVER_OBJECT
,
PVOID
);
PDEVICE_OBJECT
WINAPI
IoGetRelatedDeviceObject
(
PFILE_OBJECT
);
void
WINAPI
IoInitializeIrp
(
IRP
*
,
USHORT
,
CCHAR
);
VOID
WINAPI
IoInitializeRemoveLockEx
(
PIO_REMOVE_LOCK
,
ULONG
,
ULONG
,
ULONG
,
ULONG
);
NTSTATUS
WINAPI
IoWMIRegistrationControl
(
PDEVICE_OBJECT
,
ULONG
);
PKTHREAD
WINAPI
KeGetCurrentThread
(
void
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment