ntoskrnl.exe: Add stub Implementation of IoAllocateWorkItem.

This commit is contained in:
EA Durbin 2007-11-08 15:09:08 -06:00 committed by Alexandre Julliard
parent 83a4dbaa68
commit eb6a1fc9d0
3 changed files with 12 additions and 1 deletions

View File

@ -248,6 +248,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.@)
*/

View File

@ -313,7 +313,7 @@
@ stub IoAllocateErrorLogEntry
@ stub IoAllocateIrp
@ stub IoAllocateMdl
@ stub IoAllocateWorkItem
@ stdcall IoAllocateWorkItem(ptr)
@ stub IoAssignResources
@ stub IoAttachDevice
@ stub IoAttachDeviceByPointer

View File

@ -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))