1 /* WEED is free software; you can redistribute it and/or
2    modify it under the terms of the GNU Lesser General Public
3    License as published by the Free Software Foundation; either
4    version 3 of the License, or (at your option) any later version.
5 
6    Weed is distributed in the hope that it will be useful,
7    but WITHOUT ANY WARRANTY; without even the implied warranty of
8    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9    Lesser General Public License for more details.
10 
11    You should have received a copy of the GNU Lesser General Public
12    License along with this source code; if not, write to the Free Software
13    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
14 
15 
16    Weed is developed by:
17    Gabriel "Salsaman" Finch - http://lives.sourceforge.net
18 
19    partly based on LiViDO, which is developed by:
20    Niels Elburg - http://veejay.sf.net
21    Denis "Jaromil" Rojo - http://freej.dyne.org
22    Tom Schouten - http://zwizwa.fartit.com
23    Andraz Tori - http://cvs.cinelerra.org
24 
25    reviewed with suggestions and contributions from:
26    Silvano "Kysucix" Galliani - http://freej.dyne.org
27    Kentaro Fukuchi - http://megaui.net/fukuchi
28    Jun Iio - http://www.malib.net
29    Carlo Prelz - http://www2.fluido.as:8080/
30 */
31 
32 /* (C) G. Finch, 2005 - 2019 */
33 
34 #ifndef __WEED_PLUGIN_H__
35 #define __WEED_PLUGIN_H__
36 
37 #ifdef __WEED_HOST__
38 #error Plugins must not include weed-host.h
39 #endif
40 
41 #define __WEED_PLUGIN__
42 
43 #endif // #ifndef __WEED_PLUGIN_H__
44