mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +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
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -509,17 +509,7 @@ NtW32Call (IN ULONG RoutineIndex,
|
|||
OUT PVOID* Result OPTIONAL,
|
||||
OUT PULONG ResultLength OPTIONAL)
|
||||
{
|
||||
PKTRAP_FRAME TrapFrame;
|
||||
PETHREAD Thread;
|
||||
PULONG OldStack;
|
||||
|
||||
Thread = PsGetCurrentThread();
|
||||
if (Thread->Tcb.CallbackStack != NULL)
|
||||
{
|
||||
return(STATUS_UNSUCCESSFUL);
|
||||
}
|
||||
|
||||
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
NTSTATUS STDCALL
|
||||
|
|
Loading…
Reference in a new issue