You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
337 B
C
24 lines
337 B
C
/*
|
|
* NcLooper
|
|
*/
|
|
|
|
|
|
/* two arbitrary magic number */
|
|
#define SZ_TEXT 20
|
|
#define SZ_PATH 400
|
|
|
|
typedef struct {
|
|
char key;
|
|
int flags;
|
|
char text[SZ_TEXT+1];
|
|
char path[SZ_PATH+1];
|
|
} SampleRef;
|
|
|
|
#include "files/smpllist.h"
|
|
#include "files/ffuncs.h"
|
|
|
|
#include "ui/ncfuncs.h"
|
|
|
|
|
|
int enter_interactive(SampleRef *, int notused);
|