| 293 | |
| 294 | // This should really be a union, but gcc complains... |
| 295 | typedef struct BNDebuggerEventData |
| 296 | { |
| 297 | BNTargetStoppedEventData targetStoppedData; |
| 298 | BNErrorEventData errorData; |
| 299 | uint64_t absoluteAddress; |
| 300 | BNModuleNameAndOffset relativeAddress; |
| 301 | BNTargetExitedEventData exitData; |
| 302 | BNStdoutMessageEventData messageData; |
| 303 | } BNDebuggerEventData; |
| 304 | |
| 305 | |
| 306 | typedef struct BNDebuggerEvent |
nothing calls this directly
no outgoing calls
no test coverage detected