mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
c6c6c62cb5
Addendum to b77ebc4
(r54584).
Follow-up of #5818.
19 lines
383 B
C++
19 lines
383 B
C++
/*
|
|
* 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"
|
|
|
|
extern "C" {
|
|
void
|
|
__cxa_pure_virtual()
|
|
{
|
|
// put error handling here
|
|
|
|
DbgBreakPoint();
|
|
}
|
|
}
|