msg_attr.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef CSOUND_MSG_ATTR_H
00025 #define CSOUND_MSG_ATTR_H
00026
00027
00028
00029
00030 #define CSOUNDMSG_DEFAULT (0x0000)
00031
00032 #define CSOUNDMSG_ERROR (0x1000)
00033
00034 #define CSOUNDMSG_ORCH (0x2000)
00035
00036 #define CSOUNDMSG_REALTIME (0x3000)
00037
00038 #define CSOUNDMSG_WARNING (0x4000)
00039
00040
00041
00042 #define CSOUNDMSG_FG_BLACK (0x0100)
00043 #define CSOUNDMSG_FG_RED (0x0101)
00044 #define CSOUNDMSG_FG_GREEN (0x0102)
00045 #define CSOUNDMSG_FG_YELLOW (0x0103)
00046 #define CSOUNDMSG_FG_BLUE (0x0104)
00047 #define CSOUNDMSG_FG_MAGENTA (0x0105)
00048 #define CSOUNDMSG_FG_CYAN (0x0106)
00049 #define CSOUNDMSG_FG_WHITE (0x0107)
00050
00051 #define CSOUNDMSG_FG_BOLD (0x0008)
00052 #define CSOUNDMSG_FG_UNDERLINE (0x0080)
00053
00054 #define CSOUNDMSG_BG_BLACK (0x0200)
00055 #define CSOUNDMSG_BG_RED (0x0210)
00056 #define CSOUNDMSG_BG_GREEN (0x0220)
00057 #define CSOUNDMSG_BG_ORANGE (0x0230)
00058 #define CSOUNDMSG_BG_BLUE (0x0240)
00059 #define CSOUNDMSG_BG_MAGENTA (0x0250)
00060 #define CSOUNDMSG_BG_CYAN (0x0260)
00061 #define CSOUNDMSG_BG_GREY (0x0270)
00062
00063
00064
00065 #define CSOUNDMSG_TYPE_MASK (0x7000)
00066 #define CSOUNDMSG_FG_COLOR_MASK (0x0107)
00067 #define CSOUNDMSG_FG_ATTR_MASK (0x0088)
00068 #define CSOUNDMSG_BG_COLOR_MASK (0x0270)
00069
00070 #endif
00071