Commit eb6a1fc9 authored by EA Durbin's avatar EA Durbin Committed by Alexandre Julliard

ntoskrnl.exe: Add stub Implementation of IoAllocateWorkItem.

parent 83a4dbaa
......@@ -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,
......
......@@ -313,7 +313,7 @@
@ stub IoAllocateErrorLogEntry
@ stub IoAllocateIrp
@ stub IoAllocateMdl
@ stub IoAllocateWorkItem
@ stdcall IoAllocateWorkItem(ptr)
@ stub IoAssignResources
@ stub IoAttachDevice
@ stub IoAttachDeviceByPointer
......
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment