From 552c2436cf26a4d4c37906bdf855109cf8dd4373 Mon Sep 17 00:00:00 2001 From: Gary Scavone Date: Thu, 22 Nov 2007 16:12:08 +0000 Subject: Syntax changes to test programs and restoration of Windows VC++ project files (gps). --- tests/probe.cpp | 86 --------------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 tests/probe.cpp (limited to 'tests/probe.cpp') diff --git a/tests/probe.cpp b/tests/probe.cpp deleted file mode 100644 index e756346..0000000 --- a/tests/probe.cpp +++ /dev/null @@ -1,86 +0,0 @@ -/******************************************/ -/* - probe.cpp - by Gary P. Scavone, 2001 - - Probe audio system and prints device info. -*/ -/******************************************/ - -#include "RtAudio.h" -#include -#include - -int main() -{ - // Create an api map. - std::map apiMap; - apiMap[RtAudio::MACOSX_CORE] = "OS-X Core Audio"; - apiMap[RtAudio::WINDOWS_ASIO] = "Windows ASIO"; - apiMap[RtAudio::WINDOWS_DS] = "Windows Direct Sound"; - apiMap[RtAudio::UNIX_JACK] = "Jack Client"; - apiMap[RtAudio::LINUX_ALSA] = "Linux ALSA"; - apiMap[RtAudio::LINUX_OSS] = "Linux OSS"; - apiMap[RtAudio::RTAUDIO_DUMMY] = "RtAudio Dummy"; - - std::vector< RtAudio::Api > apis; - RtAudio :: getCompiledApi( apis ); - - std::cout << "\nCompiled APIs:\n"; - for ( unsigned int i=0; i