view src/portaudio-test.c @ 1656:7fb51f6d31af

package portaudio: add test program, disable built-in tests, and remove superflous shared flag
author Tony Theodore <tonyt@logyst.com>
date Wed, 16 Mar 2011 21:56:00 +1100
parents
children f653602a0500
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <portaudio.h>
#include <stdio.h>

int main()
{
    int i;
    const PaDeviceInfo *device_info;

    Pa_Initialize();
    printf("Version: %s\n", Pa_GetVersionText());
    for( i = 0; i < Pa_GetDeviceCount(); i++ )
    {
        device_info = Pa_GetDeviceInfo(i);
        printf("Device %d: %s %s\n", i, device_info->name, Pa_GetHostApiInfo(device_info->hostApi)->name);
    }
    Pa_Terminate();
    return 0;
}