2009-06-18 00:35:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef MESSAGE_CODES_H
|
|
|
|
#define MESSAGE_CODES_H
|
|
|
|
|
|
|
|
|
|
|
|
enum {
|
2009-06-21 13:17:21 +00:00
|
|
|
MSG_THREAD_RUN = 'run_',
|
|
|
|
MSG_THREAD_STOP = 'stop',
|
|
|
|
MSG_THREAD_STEP_OVER = 'stov',
|
|
|
|
MSG_THREAD_STEP_INTO = 'stin',
|
|
|
|
MSG_THREAD_STEP_OUT = 'stou',
|
2009-06-18 21:45:14 +00:00
|
|
|
|
2009-06-21 13:17:21 +00:00
|
|
|
MSG_THREAD_STATE_CHANGED = 'tsch',
|
|
|
|
MSG_THREAD_CPU_STATE_CHANGED = 'tcsc',
|
|
|
|
MSG_THREAD_STACK_TRACE_CHANGED = 'tstc',
|
|
|
|
MSG_STACK_FRAME_SOURCE_CODE_CHANGED = 'sfsc'
|
2009-06-18 00:35:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // MESSAGE_CODES_H
|