blob: be412b0004440ca2c10d0c86a59e2fbd2abdf503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
vst~ - VST plugin object for PD
based on the work of Jarno Seppänen and Mark Williamson
Copyright (c)2003-2004 Thomas Grill (xovo@gmx.net)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#include "editor.h"
#include "vsthost.h"
#include <flext.h>
#if FLEXT_OS == FLEXT_OS_WIN
// only Windows code is situated in this file
#include "editorwin.hpp"
#elif FLEXT_OS == FLEXT_OS_MAC
#include "editormac.hpp"
#else
#error Platform not supported
#endif
|