You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.3 KiB
49 lines
1.3 KiB
15 years ago
|
#ifndef _VERSION_H
|
||
|
|
||
|
|
||
|
#define VERSION_NUM 2.0
|
||
|
#define VERSION_SHORTTXT "2.0"
|
||
|
#define VERSION_TXT "KMid 2.0"
|
||
|
|
||
|
// Undefine WORKING for release versions
|
||
|
//#define WORKING
|
||
|
|
||
|
// I want to keep some special variables defined at home for personal
|
||
|
// adjustments
|
||
|
//#define AT_HOME
|
||
|
|
||
|
|
||
12 years ago
|
// The next definition makes tdemid display some general debug messages
|
||
15 years ago
|
// that may be helpful to locate any bug, but without making lots of
|
||
|
// messages. Please when reporting a bug, be sure that this is set and
|
||
|
// send me the output.
|
||
|
//#define GENERAL_DEBUG_MESSAGES
|
||
|
|
||
12 years ago
|
// Define MODE_DEMO_ONLYVISUAL for tdemid to work on systems with no soundcard,
|
||
15 years ago
|
// or when it is not well configured. You will only get visual feedback, that
|
||
|
// is, you will see the letter changing of colors, but no music. Really, you
|
||
|
// would get music if it is possible, but by defining this, many synchronization
|
||
|
// routines will be turned off.
|
||
|
//#define MODE_DEMO_ONLYVISUAL
|
||
|
|
||
|
|
||
|
// And now, DEBUG messages :
|
||
|
#ifdef WORKING
|
||
|
#define KMidDEBUG
|
||
|
//#define KDISPTEXTDEBUG
|
||
|
//#define COLLECTDLGDEBUG
|
||
|
//#define DEVICEMANDEBUG
|
||
|
//#define FMOUTDEBUG
|
||
|
//#define GUSOUTDEBUG
|
||
|
//#define MIDFILEDEBUG
|
||
|
//#define MIDIOUTDEBUG
|
||
|
//#define MIDISTATDEBUG
|
||
|
//#define MIDIMAPPERDEBUG
|
||
|
//#define SYNTHOUTDEBUG
|
||
|
//#define VOICEMANDEBUG
|
||
|
//#define PLAYERDEBUG
|
||
|
//#define TRACKDEBUG
|
||
|
#endif
|
||
|
|
||
|
#endif
|