mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
NtW32Call was causing a compile error and didn't do anything anyhow, so I changed it back to be UNIMPLEMENTED so things will compile.
By the way, what is this function for? svn path=/trunk/; revision=2514
This commit is contained in:
parent
0267a0a1c8
commit
e136b71248
1 changed files with 2 additions and 12 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: thread.c,v 1.85 2002/01/15 00:43:18 dwelch Exp $
|
/* $Id: thread.c,v 1.86 2002/01/15 01:42:57 phreak Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -509,17 +509,7 @@ NtW32Call (IN ULONG RoutineIndex,
|
||||||
OUT PVOID* Result OPTIONAL,
|
OUT PVOID* Result OPTIONAL,
|
||||||
OUT PULONG ResultLength OPTIONAL)
|
OUT PULONG ResultLength OPTIONAL)
|
||||||
{
|
{
|
||||||
PKTRAP_FRAME TrapFrame;
|
UNIMPLEMENTED;
|
||||||
PETHREAD Thread;
|
|
||||||
PULONG OldStack;
|
|
||||||
|
|
||||||
Thread = PsGetCurrentThread();
|
|
||||||
if (Thread->Tcb.CallbackStack != NULL)
|
|
||||||
{
|
|
||||||
return(STATUS_UNSUCCESSFUL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
|
|
Loading…
Reference in a new issue