mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
694 B
43 lines
694 B
/***
|
|
*purevirt.c - stub to trap pure virtual function calls
|
|
*
|
|
* Copyright (c) 1992-2001, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* defines _purecall() -
|
|
*
|
|
*Revision History:
|
|
* 09-30-92 GJF Module created
|
|
* 04-06-93 SKS Replace _CRTAPI* with __cdecl
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#ifndef _POSIX_
|
|
|
|
#include <cruntime.h>
|
|
#include <internal.h>
|
|
#include <rterr.h>
|
|
|
|
/***
|
|
*void _purecall(void) -
|
|
*
|
|
*Purpose:
|
|
*
|
|
*Entry:
|
|
* No arguments
|
|
*
|
|
*Exit:
|
|
* Never returns
|
|
*
|
|
*Exceptions:
|
|
*
|
|
*******************************************************************************/
|
|
|
|
void __cdecl _purecall(
|
|
void
|
|
)
|
|
{
|
|
_amsg_exit(_RT_PUREVIRT);
|
|
}
|
|
|
|
#endif
|