File: globaldefs.h

package info (click to toggle)
muse 0.5.2-1.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,740 kB
  • ctags: 9,446
  • sloc: cpp: 83,520; sh: 7,034; makefile: 871; ansic: 140
file content (20 lines) | stat: -rw-r--r-- 467 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//=========================================================
//  MusE
//  Linux Music Editor
//  $Id: globaldefs.h,v 1.2 2001/11/20 15:19:31 muse Exp $
//
//  (C) Copyright 2000 Werner Schweer (ws@seh.de)
//=========================================================

#ifndef __GLOBALDEFS_H__
#define __GLOBALDEFS_H__

// Midi Type
//    MT_GM  - General Midi
//    MT_GS  - Roland GS
//    MT_XG  - Yamaha XG

enum MType { MT_UNKNOWN=0, MT_GM, MT_GS, MT_XG };

#endif