DEBUG_ACCESS_CAPABILITIES_STRUCT
This structure describes the access capabilities of the debugger.
typedef struct _DEBUG_ACCESS_CAPABILITIES_STRUCT{
BOOL fWriteCBPWhileRunning;
BOOL fReadCBPWhileRunning;
BOOL fWriteDBPWhileRunning;
BOOL fReadDBPWhileRunning;
BOOL fWriteVMWhileRunning;
BOOL fReadVMWhileRunning;
BOOL fWritePMWhileRunning;
BOOL fReadPMWhileRunning;
BOOL fWriteRegWhileRunning;
BOOL fReadRegWhileRunning;
}
DEBUG_ACCESS_CAPABILITIES_STRUCT, *PDEBUG_ACCESS_CAPABILITIES_STRUCT;
Members
- fWriteCBPWhileRunning
Value that, if TRUE, allows a code breakpoint to be set or cleared while running. - fReadCBPWhileRunning
Value that, if TRUE, allows a code breakpoint to be read while running. - fWriteDBPWhileRunning
Value that, if TRUE, allows a data breakpoint to be set or cleared while running. - fReadDBPWhileRunning
Value that, if TRUE, allows a data breakpoint to be read while running. - fWriteVMWhileRunning
Value that, if TRUE, allows virtual memory to be written while running. - fReadVMWhileRunning
Value that, if TRUE, allows virtual memory to be read while running. - fWritePMWhileRunning
Value that, if TRUE, allows physical memory or peripheral I/O to be written while running. - fReadPMWhileRunning
Value that, if TRUE, allows physical memory or peripheral I/O to be read while running. - fWriteRegWhileRunning
Value that, if TRUE, allows CPU registers to be written while running. - fReadRegWhileRunning
Value that, if TRUE, allows CPU registers to be read while running.
Requirements
OS Versions: Windows CE 3.0 and later.
Header: Exdi.h, Exdi.idl.
See Also
Last updated on Friday, October 08, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.