fix rules for optional plugins.
[galan.git] / include / cocomp.h
blob2311a150d4fceff6b6f4f9370913b2a52573d0a0
1 /* gAlan - Graphical Audio Language
2 * Copyright (C) 1999 Tony Garnock-Jones
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef CoComp_H
20 #define CoComp_H
22 #define PIXMAPDIRIFY(filename) \
23 (SITE_PKGDATA_DIR G_DIR_SEPARATOR_S "pixmaps" G_DIR_SEPARATOR_S filename)
26 typedef struct COCompData COCompData;
27 typedef struct COCompInitData COCompInitData;
30 struct COCompData {
31 gchar *name;
34 //struct COCompInitData {
35 //};
37 extern void init_cocomp(void);
38 extern void done_cocomp(void);
40 #endif