Merge pull request #110 from tesselode/fixes
[wdl/wdl-ol.git] / WDL / swell / swell-appstub.mm
blobb08c11175c60f37d8697ec6086fc4ef762aa796d
1 /* Cockos SWELL (Simple/Small Win32 Emulation Layer for Linux/OSX)
2    Copyright (C) 2006 and later, Cockos, Inc.
4     This software is provided 'as-is', without any express or implied
5     warranty.  In no event will the authors be held liable for any damages
6     arising from the use of this software.
8     Permission is granted to anyone to use this software for any purpose,
9     including commercial applications, and to alter it and redistribute it
10     freely, subject to the following restrictions:
12     1. The origin of this software must not be misrepresented; you must not
13        claim that you wrote the original software. If you use this software
14        in a product, an acknowledgment in the product documentation would be
15        appreciated but is not required.
16     2. Altered source versions must be plainly marked as such, and must not be
17        misrepresented as being the original software.
18     3. This notice may not be removed or altered from any source distribution.
19 */  
20 #include "swell.h"
23 #ifndef SWELL_PROVIDED_BY_APP
25 // only add this file to your project if you are an application that wishes to publish the SWELL API to its modules/plugins
26 // the modules should be compiled using SWELL_PROVIDED_BY_APP and include swell-modstub.mm
28 #undef _WDL_SWELL_H_API_DEFINED_
29 #undef SWELL_API_DEFINE
30 #define SWELL_API_DEFINE(ret, func, parms) {#func, (void *)func },
31 static struct api_ent
33   const char *name;
34   void *func;
36 api_table[]=
38 #include "swell-functions.h"
41 static int compfunc(const void *a, const void *b)
43   return strcmp(((struct api_ent*)a)->name,((struct api_ent*)b)->name);
46 void *SWELLAPI_GetFunc(const char *name)
48   if (!name) return (void *)0x100; // version
49   static int a; 
50   if (!a)
51   { 
52         a=1;
53     qsort(api_table,sizeof(api_table)/sizeof(api_table[0]),sizeof(api_table[0]),compfunc);
54   }
55   struct api_ent find={name,NULL};
56   struct api_ent *res=(struct api_ent *)bsearch(&find,api_table,sizeof(api_table)/sizeof(api_table[0]),sizeof(api_table[0]),compfunc);
57   if (res) return res->func;
58   return NULL;
61 #endif