| 952 | VMCmd *codeInst = NULL; |
| 953 | |
| 954 | struct TreeItemExtra |
| 955 | { |
| 956 | TreeItemExtra():address(NULL), type(NULL), item(NULL), expandable(false), name(NULL){} |
| 957 | TreeItemExtra(void* a, const ExternTypeInfo* t, HTREEITEM i, bool e, const char *n = NULL):address(a), type(t), item(i), expandable(e), name(n){} |
| 958 | |
| 959 | void *address; |
| 960 | const ExternTypeInfo *type; |
| 961 | HTREEITEM item; |
| 962 | bool expandable; |
| 963 | const char *name; |
| 964 | }; |
| 965 | std::vector<TreeItemExtra> tiExtra; |
| 966 | std::vector<TreeItemExtra> tiWatch; |
| 967 | std::vector<char*> externalBlocks; |
no outgoing calls
no test coverage detected