Changeset 87594 in vbox for trunk/include/VBox/types.h
- Timestamp:
- Feb 3, 2021 8:23:46 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142626
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/types.h
r87141 r87594 522 522 typedef RCPTRTYPE(struct DBGFTRACERINSRC *) PDBGFTRACERINSRC; 523 523 524 #ifdef VBOX_WITH_LOTS_OF_DBGF_BPS525 524 /** A cross context DBGF breakpoint owner handle. */ 526 525 typedef uint32_t DBGFBPOWNER; 527 526 /** Pointer to a cross context DBGF breakpoint owner handle. */ 528 typedef DBGFBPOWNER 527 typedef DBGFBPOWNER *PDBGFBPOWNER; 529 528 /** A NIL DBGF breakpoint owner handle. */ 530 529 #define NIL_DBGFBPOWNER ((uint32_t)UINT32_MAX) … … 533 532 typedef uint32_t DBGFBP; 534 533 /** Pointer to a cross context DBGF breakpoint handle. */ 535 typedef DBGFBP 534 typedef DBGFBP *PDBGFBP; 536 535 /** A NIL DBGF breakpoint handle. */ 537 536 #define NIL_DBGFBP ((uint32_t)UINT32_MAX) 538 #endif539 537 /** @} */ 540 538
Note:
See TracChangeset
for help on using the changeset viewer.