From adacb33bf4eadcd49a744177bf3f059e7b2f2f52 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Feb 2010 21:24:34 +0000 Subject: Merge with upstream r2. git-svn-id: http://svn.drobilla.net/lad/trunk/mda-lv2@2471 a436a847-0d15-0410-975c-d299462d15a1 --- src/mdaBeatBox.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/mdaBeatBox.h') diff --git a/src/mdaBeatBox.h b/src/mdaBeatBox.h index 7e48731..07b5fa4 100644 --- a/src/mdaBeatBox.h +++ b/src/mdaBeatBox.h @@ -13,6 +13,7 @@ public: virtual void processReplacing(float **inputs, float **outputs, LvzInt32 sampleFrames); virtual void setProgramName(char *name); virtual void getProgramName(char *name); + virtual bool getProgramNameIndexed (LvzInt32 category, LvzInt32 index, char* name); virtual void setParameter(LvzInt32 index, float value); virtual float getParameter(LvzInt32 index); virtual void getParameterLabel(LvzInt32 index, char *label); @@ -48,10 +49,10 @@ protected: float *hbuf; float *kbuf; float *sbuf, *sbuf2; - long hbuflen, hbufpos, hdel; - long sbuflen, sbufpos, sdel, sfx; - long kbuflen, kbufpos, kdel, ksfx; - long rec, recx, recpos; + LvzInt32 hbuflen, hbufpos, hdel; + LvzInt32 sbuflen, sbufpos, sdel, sfx; + LvzInt32 kbuflen, kbufpos, kdel, ksfx; + LvzInt32 rec, recx, recpos; char programName[32]; }; -- cgit v1.2.1