NcLooper/interactive.c

24 lines
491 B
C
Raw Normal View History

2019-12-23 17:55:31 +01:00
/*
* NCLOOPER INTERACTIVE
*/
#include <stdio.h>
#include "nclooper.h"
/* --------------------------------------------------------------------- */
extern int verbosity;
/* --------------------------------------------------------------------- */
int enter_interactive(SampleRef *psmpl, int notused)
{
#if DEBUG_LEVEL
fprintf(stderr, ">>> %s ( %p %d )\n", __func__, psmpl, notused);
#endif
return -1;
}
/* --------------------------------------------------------------------- */