mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Added _purecall().
svn path=/trunk/; revision=3255
This commit is contained in:
parent
dbd109d357
commit
fb4e8713ea
4 changed files with 29 additions and 5 deletions
|
@ -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
|
# ReactOS Operating System
|
||||||
#
|
#
|
||||||
|
@ -94,6 +94,7 @@ OBJECTS_RTL = \
|
||||||
rtl/memset.o \
|
rtl/memset.o \
|
||||||
rtl/message.o \
|
rtl/message.o \
|
||||||
rtl/nls.o \
|
rtl/nls.o \
|
||||||
|
rtl/purecall.o \
|
||||||
rtl/qsort.o \
|
rtl/qsort.o \
|
||||||
rtl/regio.o \
|
rtl/regio.o \
|
||||||
rtl/seh.o \
|
rtl/seh.o \
|
||||||
|
|
|
@ -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
|
; reactos/ntoskrnl/ntoskrnl.def
|
||||||
;
|
;
|
||||||
|
@ -972,7 +972,7 @@ _except_handler3
|
||||||
_global_unwind2
|
_global_unwind2
|
||||||
_itoa
|
_itoa
|
||||||
_local_unwind2
|
_local_unwind2
|
||||||
;_purecall
|
_purecall
|
||||||
_snprintf
|
_snprintf
|
||||||
_snwprintf
|
_snwprintf
|
||||||
_stricmp
|
_stricmp
|
||||||
|
|
|
@ -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
|
; reactos/ntoskrnl/ntoskrnl.def
|
||||||
;
|
;
|
||||||
|
@ -971,7 +971,7 @@ _except_handler3
|
||||||
_global_unwind2
|
_global_unwind2
|
||||||
_itoa
|
_itoa
|
||||||
_local_unwind2
|
_local_unwind2
|
||||||
;_purecall
|
_purecall
|
||||||
_snprintf
|
_snprintf
|
||||||
_snwprintf
|
_snwprintf
|
||||||
_stricmp
|
_stricmp
|
||||||
|
|
23
reactos/ntoskrnl/rtl/purecall.c
Normal file
23
reactos/ntoskrnl/rtl/purecall.c
Normal 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 */
|
Loading…
Reference in a new issue