| 1207 | } |
| 1208 | |
| 1209 | void InsertUnavailableInfo(HTREEITEM parent) |
| 1210 | { |
| 1211 | TVINSERTSTRUCT helpInsert; |
| 1212 | helpInsert.hParent = parent; |
| 1213 | helpInsert.hInsertAfter = TVI_LAST; |
| 1214 | helpInsert.item.mask = TVIF_TEXT; |
| 1215 | helpInsert.item.cchTextMax = 0; |
| 1216 | helpInsert.item.pszText = "Cannot be evaluated"; |
| 1217 | TreeView_InsertItem(hVars, &helpInsert); |
| 1218 | } |
| 1219 | |
| 1220 | void FillFunctionPointerInfo(const ExternTypeInfo& type, char* ptr, HTREEITEM parent) |
| 1221 | { |
no outgoing calls
no test coverage detected