mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
297f2e3dd4
- Build fix #1 for mingw - Define cxa_pure_virtual which is required that gcc is aware that it should really use the libc++ instead of falling back to libc svn path=/branches/usb-bringup/; revision=51348
24 lines
524 B
C++
24 lines
524 B
C++
/*
|
|
* PROJECT: ReactOS Universal Serial Bus Bulk Enhanced Host Controller Interface
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: drivers/usb/usbehci_new/purecall.cpp
|
|
* PURPOSE: USB EHCI device driver.
|
|
* PROGRAMMERS:
|
|
* Michael Martin (michael.martin@reactos.org)
|
|
* Johannes Anderwald (johannes.anderwald@reactos.org)
|
|
*/
|
|
|
|
#include "usbehci.h"
|
|
|
|
|
|
extern "C" {
|
|
void
|
|
__cxa_pure_virtual()
|
|
{
|
|
// put error handling here
|
|
|
|
DbgBreakPoint();
|
|
|
|
}
|
|
}
|
|
|