pre-xmas commit

This commit is contained in:
2019-12-23 17:55:31 +01:00
parent db3d7283df
commit 119a61c0e5
12 changed files with 146 additions and 67 deletions

23
interactive.c Normal file
View File

@@ -0,0 +1,23 @@
/*
* 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;
}
/* --------------------------------------------------------------------- */