mirror of https://github.com/lianthony/NT4.0
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.
37 lines
377 B
37 lines
377 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
purecall.c
|
|
|
|
Abstract:
|
|
|
|
|
|
Author:
|
|
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include <sysinc.h>
|
|
#include <rpc.h>
|
|
|
|
void __cdecl _purecall(void)
|
|
{
|
|
#ifdef DEBUGRPC
|
|
ASSERT(!"PureVirtualCalled");
|
|
#endif
|
|
}
|
|
|
|
#ifdef DOS
|
|
void __far __cdecl _fpurecall(void)
|
|
{
|
|
#ifdef DEBUGRPC
|
|
ASSERT(!"PureVirtualCalled");
|
|
#endif
|
|
}
|
|
#endif // DOS
|
|
|