Added _purecall().

svn path=/trunk/; revision=3255
This commit is contained in:
Eric Kohl 2002-07-18 18:15:09 +00:00
parent dbd109d357
commit fb4e8713ea
4 changed files with 29 additions and 5 deletions

View file

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.74 2002/07/18 00:25:30 dwelch Exp $
# $Id: Makefile,v 1.75 2002/07/18 18:15:09 ekohl Exp $
#
# ReactOS Operating System
#
@ -94,6 +94,7 @@ OBJECTS_RTL = \
rtl/memset.o \
rtl/message.o \
rtl/nls.o \
rtl/purecall.o \
rtl/qsort.o \
rtl/regio.o \
rtl/seh.o \

View file

@ -1,4 +1,4 @@
; $Id: ntoskrnl.def,v 1.135 2002/06/10 21:11:56 hbirr Exp $
; $Id: ntoskrnl.def,v 1.136 2002/07/18 18:15:09 ekohl Exp $
;
; reactos/ntoskrnl/ntoskrnl.def
;
@ -972,7 +972,7 @@ _except_handler3
_global_unwind2
_itoa
_local_unwind2
;_purecall
_purecall
_snprintf
_snwprintf
_stricmp

View file

@ -1,4 +1,4 @@
; $Id: ntoskrnl.edf,v 1.121 2002/06/10 21:11:56 hbirr Exp $
; $Id: ntoskrnl.edf,v 1.122 2002/07/18 18:15:09 ekohl Exp $
;
; reactos/ntoskrnl/ntoskrnl.def
;
@ -971,7 +971,7 @@ _except_handler3
_global_unwind2
_itoa
_local_unwind2
;_purecall
_purecall
_snprintf
_snwprintf
_stricmp

View file

@ -0,0 +1,23 @@
/* $Id: purecall.c,v 1.1 2002/07/18 18:14:41 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* PURPOSE: Message table functions
* FILE: ntoskrnl/rtl/message.c
* PROGRAMER: Eric Kohl <ekohl@zr-online.de>
* REVISION HISTORY:
* 29/05/2001: Created
*/
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
/* FUNCTIONS ****************************************************************/
void _purecall(void)
{
ExRaiseStatus(STATUS_NOT_IMPLEMENTED);
}
/* EOF */