From 2e8a32f19193b9098ad52e0402dde30f01c32fd0 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 31 Jan 2003 04:35:34 +0000 Subject: "" svn path=/trunk/; revision=373 --- externals/grill/flext/source/flsupport.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'externals/grill/flext/source/flsupport.h') diff --git a/externals/grill/flext/source/flsupport.h b/externals/grill/flext/source/flsupport.h index e2350d04..66f16dac 100644 --- a/externals/grill/flext/source/flsupport.h +++ b/externals/grill/flext/source/flsupport.h @@ -167,8 +167,11 @@ public: static t_atom *CopyList(int argc,const t_atom *argv); //! Copy a memory region static void CopyMem(void *dst,const void *src,int bytes); + static void CopySamples(t_sample *dst,const t_sample *src,int cnt) { CopyMem(dst,src,cnt*sizeof(t_sample)); } //! Zero a memory region static void ZeroMem(void *dst,int bytes); + static void ZeroSamples(t_sample *dst,int cnt) { ZeroMem(dst,cnt*sizeof(t_sample)); } + //! Sleep for an amount of time static void Sleep(double s); -- cgit v1.2.1