1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS Kernel Streaming 4 * FILE: drivers/wdm/audio/backpln/portcls/connection.c 5 * PURPOSE: purecall stub 6 * PROGRAMMER: Johannes Anderwald 7 */ 8 9 #include "private.hpp" 10 11 #ifndef YDEBUG 12 #define NDEBUG 13 #endif 14 15 #include <debug.h> 16 17 extern "C" { 18 void 19 __cxa_pure_virtual() 20 { 21 // put error handling here 22 23 DbgBreakPoint(); 24 25 } 26 } 27 28