summaryrefslogtreecommitdiff
path: root/preset.h
diff options
context:
space:
mode:
authorAndrej Shadura <andrew.shadura@collabora.co.uk>2021-10-07 16:12:09 +0200
committerAndrej Shadura <andrew.shadura@collabora.co.uk>2021-10-07 16:12:09 +0200
commitd4700c96fd551eea539921572c03842ecdc6c8c3 (patch)
treeac37ec6ef7d954feab5ad47c427e849f051da604 /preset.h
Import Upstream version 0.2.0+hg20110905r195
Diffstat (limited to 'preset.h')
-rw-r--r--preset.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/preset.h b/preset.h
new file mode 100644
index 0000000..95d92d7
--- /dev/null
+++ b/preset.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright (c) 2009 Tomasz Moń <desowin@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; under version 3 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses>.
+ */
+
+#ifndef GDIGI_PRESET_H
+#define GDIGI_PRESET_H
+
+#include <glib.h>
+
+typedef struct {
+ gchar *name;
+ GList *params;
+ GList *genetxs;
+} Preset;
+
+Preset *create_preset_from_xml_file(gchar *filename, GError **error);
+Preset *create_preset_from_data(GList *list);
+void preset_free(Preset *preset);
+
+#endif /* GDIGI_PRESET_H */