| 193 | } |
| 194 | |
| 195 | void DebugGraph_Initialize(void) { |
| 196 | atexit(DebugGraph_Free); |
| 197 | DebugGraphNode_root = NULL; |
| 198 | graph_bmp = -1; |
| 199 | graph_mask = 0; |
| 200 | graph_num_nodes = 0; |
| 201 | } |
| 202 | |
| 203 | int DebugGraph_Add(int min, int max, const char *name, int flags) { |
| 204 | tAddDebugGraph data; |