Leaked source code of windows server 2003
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

  1. //
  2. // purecall.c - required for using virtual functions in driver on win98.
  3. // not required for NT5, but does no harm.
  4. // basically this function must be defined.
  5. #include <wdm.h>
  6. #include "debug.h"
  7. int _cdecl _purecall( void )
  8. {
  9. ASSERT(FALSE && "Attempt to call pure virtual function!");
  10. return 0;
  11. }