Commit 5cc8bcf0 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Implement RtlCreateUserProcess().

parent 7a8ff7fa
......@@ -1651,19 +1651,6 @@ void WINAPI RtlInsertElementGenericTableAvl(PRTL_AVL_TABLE table, void *buffer,
FIXME("%p %p %u %p: stub\n", table, buffer, size, element);
}
/**********************************************************************
* RtlCreateUserProcess [NTDLL.@]
*/
NTSTATUS WINAPI RtlCreateUserProcess(UNICODE_STRING *path, ULONG attributes, RTL_USER_PROCESS_PARAMETERS *parameters,
SECURITY_DESCRIPTOR *process_descriptor, SECURITY_DESCRIPTOR *thread_descriptor,
HANDLE parent, BOOLEAN inherit, HANDLE debug, HANDLE exception,
RTL_USER_PROCESS_INFORMATION *info)
{
FIXME("(%p %u %p %p %p %p %d %p %p %p): stub\n", path, attributes, parameters, process_descriptor, thread_descriptor,
parent, inherit, debug, exception, info);
return STATUS_NOT_IMPLEMENTED;
}
typedef struct _RTL_UNLOAD_EVENT_TRACE
{
PVOID BaseAddress;
......
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