25 lines
777 B
C
25 lines
777 B
C
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* Includes */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
#define _LV2_PLUGIN_C_
|
||
|
|
||
|
|
||
|
|
||
|
#include <drummer.h>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
static LV2_Handle instantiate(const LV2_Descriptor *descriptor,
|
||
|
double rate,
|
||
|
const char* bundle_path,
|
||
|
const LV2_Feature* const* features)
|
||
|
{
|
||
|
}
|