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.
11 lines
328 B
11 lines
328 B
//
|
|
// purecall.c - required for using virtual functions in driver on win98.
|
|
// not required for NT5, but does no harm.
|
|
// basically this function must be defined.
|
|
#include <wdm.h>
|
|
#include "debug.h"
|
|
int _cdecl _purecall( void )
|
|
{
|
|
ASSERT(FALSE && "Attempt to call pure virtual function!");
|
|
return 0;
|
|
}
|