/**************************************************************************** PROJECT: MusixTeX PreProcessor FILE : mpp.h AUTHOR : J. C. Nieuwenhuizen copyright (c) FlowerSoft 1995 --*/ #ifndef __MPP_H #define __MPP_H enum Mode { NORMAL, EXTRACT = 1, SILENT = 2, VERBOSE = 4 }; extern Mode mode; extern char* execPrefix; //extern char* outName; //void error( const char* s = "internal error", const char* file = __FILE__, const int line = __LINE__ ); //void warning( const char* s, const char* file = __FILE__, const int line = __LINE__ ); const char* quoteChar( const char* message, const char quote ); const char* quoteString( const char* message, const char *quote ); #endif // __MPP_H //