mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
26 lines
534 B
C++
26 lines
534 B
C++
/*
|
|
* PROJECT: ReactOS Universal Serial Bus Bulk Driver Library
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: lib/drivers/libusb/purecall.cpp
|
|
* PURPOSE: USB Common Driver Library.
|
|
* PROGRAMMERS:
|
|
* Michael Martin (michael.martin@reactos.org)
|
|
* Johannes Anderwald (johannes.anderwald@reactos.org)
|
|
*/
|
|
|
|
#include "libusb.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
extern "C" {
|
|
void
|
|
__cxa_pure_virtual()
|
|
{
|
|
// put error handling here
|
|
|
|
DbgBreakPoint();
|
|
|
|
}
|
|
}
|