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
763 B
43 lines
763 B
/***
|
|
*purevirt.c - stub to trap pure virtual function calls
|
|
*
|
|
* Copyright (c) 1992, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* defines _purecall() -
|
|
*
|
|
*Revision History:
|
|
* 09-30-92 GJF Module created
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#include <windows.h>
|
|
#include <cruntime.h>
|
|
|
|
/***
|
|
*void _purecall(void) -
|
|
*
|
|
*Purpose:
|
|
*
|
|
*Entry:
|
|
* No arguments
|
|
*
|
|
*Exit:
|
|
* Never returns
|
|
*
|
|
*Exceptions:
|
|
*
|
|
*******************************************************************************/
|
|
|
|
void __cdecl _purecall(
|
|
void
|
|
)
|
|
{
|
|
#if DBG==1
|
|
MessageBoxA (NULL
|
|
"Pure virtual function call attempted",
|
|
"OLE runtime error",
|
|
MB_ICONSTOP | MB_OK | MB_TASKMODAL);
|
|
#endif
|
|
}
|
|
|