@type debug: L{Debug} @param debug: Debug object that received the event. @type raw: L{DEBUG_EVENT} @param raw: Raw DEBUG_EVENT structure as used by the Win32 API.
(self, debug, raw)
| 148 | eventDescription = "A debug event of an unknown type has occured." |
| 149 | |
| 150 | def __init__(self, debug, raw): |
| 151 | """ |
| 152 | @type debug: L{Debug} |
| 153 | @param debug: Debug object that received the event. |
| 154 | |
| 155 | @type raw: L{DEBUG_EVENT} |
| 156 | @param raw: Raw DEBUG_EVENT structure as used by the Win32 API. |
| 157 | """ |
| 158 | self.debug = debug |
| 159 | self.raw = raw |
| 160 | self.continueStatus = win32.DBG_EXCEPTION_NOT_HANDLED |
| 161 | |
| 162 | ## @property |
| 163 | ## def debug(self): |