Changeset 84708 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Jun 5, 2020 6:12:54 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138482
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCInternal.h
r84653 r84708 599 599 void dbgcDestroy(PDBGC pDbgc); 600 600 601 const char *dbgcGetEventCtx(DBGFEVENTCTX enmCtx); 601 DECLHIDDEN(const char *) dbgcGetEventCtx(DBGFEVENTCTX enmCtx); 602 DECLHIDDEN(PCDBGCSXEVT) dbgcEventLookup(DBGFEVENTTYPE enmType); 602 603 603 604 DECLHIDDEN(int) dbgcGdbStubCreate(PUVM pUVM, PDBGCBACK pBack, unsigned fFlags); -
trunk/src/VBox/Debugger/DBGConsole.cpp
r84660 r84708 588 588 * @param enmCtx The context. 589 589 */ 590 const char *dbgcGetEventCtx(DBGFEVENTCTX enmCtx)590 DECLHIDDEN(const char *) dbgcGetEventCtx(DBGFEVENTCTX enmCtx) 591 591 { 592 592 switch (enmCtx) … … 612 612 * @param enmType The possibly generic event to find the descriptor for. 613 613 */ 614 static PCDBGCSXEVTdbgcEventLookup(DBGFEVENTTYPE enmType)614 DECLHIDDEN(PCDBGCSXEVT) dbgcEventLookup(DBGFEVENTTYPE enmType) 615 615 { 616 616 uint32_t i = g_cDbgcSxEvents;
Note:
See TracChangeset
for help on using the changeset viewer.