view src/portaudio-test.c @ 4356:2dbbba3cfa86

of-dicom: update to 0.2.0 * src/of-dicom.mk: update version, checksum, if non navtive, set CMAKE_BINARY and pass to build * of-dicom-1-fixes.patch: removed * of-dicom-2-gdcm2.4.patch: removed * dist-files.mk: removed unused patches
author John D
date Thu, 23 Feb 2017 14:08:41 -0500
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See 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;
}