1 // SMMessages.h 2 #ifndef SM_MESSAGES_H 3 #define SM_MESSAGES_H 4 5 // message constants 6 enum { 7 MSG_BLOCK = 'blck', 8 MSG_UNBLOCK = 'unbl', 9 MSG_TEST = 'test', 10 MSG_REPLY = 'rply', 11 }; 12 13 #endif // SM_MESSAGES_H 14