summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/midiedit/drummap.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/midiedit/drummap.h')
-rw-r--r--attic/muse2-oom/muse2/muse/midiedit/drummap.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/attic/muse2-oom/muse2/muse/midiedit/drummap.h b/attic/muse2-oom/muse2/muse/midiedit/drummap.h
deleted file mode 100644
index eb494c9c..00000000
--- a/attic/muse2-oom/muse2/muse/midiedit/drummap.h
+++ /dev/null
@@ -1,47 +0,0 @@
-//=========================================================
-// MusE
-// Linux Music Editor
-// $Id: drummap.h,v 1.3.2.3 2009/10/29 02:14:37 terminator356 Exp $
-//
-// (C) Copyright 1999/2000 Werner Schweer (ws@seh.de)
-//=========================================================
-
-#ifndef __DRUMMAP_H__
-#define __DRUMMAP_H__
-
-class QString;
-
-class Xml;
-
-//---------------------------------------------------------
-// DrumMap
-//---------------------------------------------------------
-
-struct DrumMap {
- QString name;
- unsigned char vol; // playback volume, percent.
- int quant;
- int len; // len of event in ticks
- int channel; // midi channel
- int port; // midi port
- char lv1, lv2, lv3, lv4; // velocities
- char enote, anote; // input note - output note
- bool mute;
-// bool selected;
-
- //bool const operator==(const DrumMap& map) const;
- bool operator==(const DrumMap& map) const;
- };
-
-#define DRUM_MAPSIZE 128
-
-extern char drumOutmap[DRUM_MAPSIZE];
-extern char drumInmap[DRUM_MAPSIZE];
-extern DrumMap drumMap[DRUM_MAPSIZE];
-extern void initDrumMap();
-extern void writeDrumMap(int level, Xml& xml, bool external);
-extern void readDrumMap(Xml& xml, bool external);
-extern void resetGMDrumMap();
-
-#endif
-