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
eb6a1fc9
Commit
eb6a1fc9
authored
Nov 08, 2007
by
EA Durbin
Committed by
Alexandre Julliard
Nov 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add stub Implementation of IoAllocateWorkItem.
parent
83a4dbaa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
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
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
eb6a1fc9
...
...
@@ -249,6 +249,16 @@ NTSTATUS wine_ntoskrnl_main_loop( HANDLE stop_event )
/***********************************************************************
* IoAllocateWorkItem (NTOSKRNL.EXE.@)
*/
PIO_WORKITEM
WINAPI
IoAllocateWorkItem
(
PDEVICE_OBJECT
DeviceObject
)
{
FIXME
(
"stub: %p
\n
"
,
DeviceObject
);
return
NULL
;
}
/***********************************************************************
* IoCreateDevice (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
IoCreateDevice
(
DRIVER_OBJECT
*
driver
,
ULONG
ext_size
,
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
eb6a1fc9
...
...
@@ -313,7 +313,7 @@
@ stub IoAllocateErrorLogEntry
@ stub IoAllocateIrp
@ stub IoAllocateMdl
@ st
ub IoAllocateWorkItem
@ st
dcall IoAllocateWorkItem(ptr)
@ stub IoAssignResources
@ stub IoAttachDevice
@ stub IoAttachDeviceByPointer
...
...
include/ddk/wdm.h
View file @
eb6a1fc9
...
...
@@ -88,6 +88,7 @@ typedef struct _IO_TIMER *PIO_TIMER;
typedef
struct
_ETHREAD
*
PETHREAD
;
typedef
struct
_KTHREAD
*
PKTHREAD
;
typedef
struct
_EPROCESS
*
PEPROCESS
;
typedef
struct
_IO_WORKITEM
*
PIO_WORKITEM
;
#define MAXIMUM_VOLUME_LABEL_LENGTH (32 * sizeof(WCHAR))
...
...
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