2009-09-11 06:33:55 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS Kernel Streaming
|
|
|
|
* FILE: drivers/wdm/audio/backpln/portcls/connection.c
|
|
|
|
* PURPOSE: purecall stub
|
|
|
|
* PROGRAMMER: Johannes Anderwald
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "private.hpp"
|
|
|
|
|
2014-01-03 17:10:56 +00:00
|
|
|
#ifndef YDEBUG
|
|
|
|
#define NDEBUG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <debug.h>
|
2009-09-11 06:33:55 +00:00
|
|
|
|
|
|
|
extern "C" {
|
2021-06-11 12:29:21 +00:00
|
|
|
void
|
2009-09-11 06:33:55 +00:00
|
|
|
__cxa_pure_virtual()
|
|
|
|
{
|
|
|
|
// put error handling here
|
|
|
|
|
2009-10-21 17:52:11 +00:00
|
|
|
DbgBreakPoint();
|
2009-09-11 06:33:55 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|