/*
 *  alessandropetrolati Spy
 *
 *  Spy registra il segnale dal microfono del PC.
 *  Il segnale è prima analizzato e catturato soltanto
 *  se supera una pre-determinata soglia (threshold).
 *  Utile come ‘spia’ acustica, registrando solo un segnale
 *  valido e ottimizzando quindi la quantità di memoria su disco.
 *
 *  Requirements:
 *  Corda run with only CsoundAV_WIN 0.043 and CsoundAV_Con
 *  a real-time oriented version of Csound by Gabriel Maldonado
 *  and MIDI device.
 *  It has not been tested on Windows Vista.
 *
 *  BtW: if your computer complains not to have file msvcp50.dll,
 *  you can find it here. You could need also glut32.dll.
 *  You have to place them in the \windows\system or
 *  \windows\system32 directory.
 *
 *  N.B. Notice that the 64-bit versions are not tested as
 *  much as 32-bit versions, so may contain more bugs.
 *
 *  Created on 2008.
 *  Copyright © Alessandro Petrolati
 *  All rights reserved.
 *
 */
 
#include <index>
 
{
    /* Spy package include the CsoundAV_Con */
    _local.downloadSpy();
 
    _remote.downloadCsound();
 
    this->viewScreenshots();
    this->goToBlog();
    this->links();
}
///EOF