blob: 868a72925aeb565094b0c34567dfb9f339780ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -*- mode: c++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
* File: compat.h
* This file belongs to the Bifrost project.
* Macros for throw compatability.
* Date: Tue Feb 16 14:14:30 CET 2010
* Author: Bent Bisballe Nyeng
* Copyright: 2010
* Email: deva@aasimon.org
****************************************************************************/
#ifndef __LIBAUDIOIN_COMPAT_H__
#define __LIBAUDIOIN_COMPAT_H__
#ifdef WIN32
#define _throw(...)
#else
#define _throw(fmt...) throw(fmt)
#endif
#endif/*__LIBAUDIOIN_COMPAT_H__*/
|