Changeset 41561 in vbox for trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
- Timestamp:
- Jun 4, 2012 12:10:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r41542 r41561 368 368 369 369 /** The number of commands in the CodeView/WinDbg emulation. */ 370 const unsigned g_cCmdsCodeView = RT_ELEMENTS(g_aCmdsCodeView); 371 370 const uint32_t g_cCmdsCodeView = RT_ELEMENTS(g_aCmdsCodeView); 371 372 373 /** Function descriptors for the CodeView / WinDbg emulation. 374 * The emulation isn't attempting to be identical, only somewhat similar. 375 */ 376 const DBGCFUNC g_aFuncsCodeView[] = 377 { 378 }; 379 380 /** The number of functions in the CodeView/WinDbg emulation. */ 381 const uint32_t g_cFuncsCodeView = RT_ELEMENTS(g_aFuncsCodeView); 372 382 373 383
Note:
See TracChangeset
for help on using the changeset viewer.