mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
More missing files.
svn path=/trunk/; revision=2513
This commit is contained in:
parent
2aceac7176
commit
0267a0a1c8
3 changed files with 21 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: callback.c,v 1.3 2000/12/23 02:37:38 dwelch Exp $
|
/* $Id: callback.c,v 1.4 2002/01/15 00:43:17 dwelch Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -16,7 +16,8 @@
|
||||||
|
|
||||||
/* TYPES *********************************************************************/
|
/* TYPES *********************************************************************/
|
||||||
|
|
||||||
typedef NTSTATUS (*CALLBACK_FUNCTION)(PVOID Argument, ULONG ArgumentLength);
|
typedef NTSTATUS STDCALL (*CALLBACK_FUNCTION)(PVOID Argument,
|
||||||
|
ULONG ArgumentLength);
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: thread.c,v 1.84 2002/01/13 22:52:07 dwelch Exp $
|
/* $Id: thread.c,v 1.85 2002/01/15 00:43:18 dwelch Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -509,7 +509,17 @@ NtW32Call (IN ULONG RoutineIndex,
|
||||||
OUT PVOID* Result OPTIONAL,
|
OUT PVOID* Result OPTIONAL,
|
||||||
OUT PULONG ResultLength OPTIONAL)
|
OUT PULONG ResultLength OPTIONAL)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
PKTRAP_FRAME TrapFrame;
|
||||||
|
PETHREAD Thread;
|
||||||
|
PULONG OldStack;
|
||||||
|
|
||||||
|
Thread = PsGetCurrentThread();
|
||||||
|
if (Thread->Tcb.CallbackStack != NULL)
|
||||||
|
{
|
||||||
|
return(STATUS_UNSUCCESSFUL);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
|
|
6
reactos/subsys/win32k/include/dib.h
Normal file
6
reactos/subsys/win32k/include/dib.h
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#ifndef __WIN32K_DIB_H
|
||||||
|
#define __WIN32K_DIB_H
|
||||||
|
|
||||||
|
int DIB_GetDIBWidthBytes(int width, int depth);
|
||||||
|
|
||||||
|
#endif /* __WIN32K_DIB_H */
|
Loading…
Reference in a new issue