[LIBUSB]
[reactos.git] / reactos / lib / drivers / libusb / purecall.cpp
1 /*
2 * PROJECT: ReactOS Universal Serial Bus Bulk Driver Library
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: lib/drivers/libusb/purecall.cpp
5 * PURPOSE: USB Common Driver Library.
6 * PROGRAMMERS:
7 * Michael Martin (michael.martin@reactos.org)
8 * Johannes Anderwald (johannes.anderwald@reactos.org)
9 */
10
11
12
13 #include "libusb.h"
14
15
16 extern "C" {
17 void
18 __cxa_pure_virtual()
19 {
20 // put error handling here
21
22 DbgBreakPoint();
23
24 }
25 }
26