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
ea943293
Commit
ea943293
authored
Oct 03, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub for ExCreateCallback.
parent
a3a909f2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+12
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
wdm.h
include/ddk/wdm.h
+9
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
ea943293
...
...
@@ -1105,6 +1105,18 @@ PVOID WINAPI ExAllocatePoolWithQuotaTag( POOL_TYPE type, SIZE_T size, ULONG tag
/***********************************************************************
* ExCreateCallback (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
ExCreateCallback
(
PCALLBACK_OBJECT
*
obj
,
POBJECT_ATTRIBUTES
attr
,
BOOLEAN
create
,
BOOLEAN
allow_multiple
)
{
FIXME
(
"(%p, %p, %u, %u): stub
\n
"
,
obj
,
attr
,
create
,
allow_multiple
);
return
STATUS_NOT_IMPLEMENTED
;
}
/***********************************************************************
* ExFreePool (NTOSKRNL.EXE.@)
*/
void
WINAPI
ExFreePool
(
void
*
ptr
)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
ea943293
...
...
@@ -122,7 +122,7 @@
@ stdcall ExAllocatePoolWithTag(long long long)
@ stub ExAllocatePoolWithTagPriority
@ stub ExConvertExclusiveToSharedLite
@ st
ub ExCreateCallback
@ st
dcall ExCreateCallback(ptr ptr long long)
@ stub ExDeleteNPagedLookasideList
@ stub ExDeletePagedLookasideList
@ stub ExDeleteResourceLite
...
...
include/ddk/wdm.h
View file @
ea943293
...
...
@@ -1106,6 +1106,15 @@ typedef enum {
IoModifyAccess
}
LOCK_OPERATION
;
typedef
struct
_CALLBACK_OBJECT
{
ULONG
Signature
;
KSPIN_LOCK
Lock
;
LIST_ENTRY
RegisteredCallbacks
;
BOOLEAN
AllowMultipleCallbacks
;
UCHAR
reserved
[
3
];
}
CALLBACK_OBJECT
,
*
PCALLBACK_OBJECT
;
NTSTATUS
WINAPI
ObCloseHandle
(
IN
HANDLE
handle
);
#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