Changeset 84500 in vbox
- Timestamp:
- May 25, 2020 1:09:07 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r82968 r84500 2728 2728 /** @} */ 2729 2729 2730 2731 /** @name Trace Log status codes. 2732 * @{ */ 2733 /** The trace log is malformed. */ 2734 #define VERR_TRACELOG_READER_MALFORMED_LOG (-26600) 2735 /** The trace log version is not supported. */ 2736 #define VERR_TRACELOG_READER_LOG_UNSUPPORTED (-26601) 2737 /** The trace log reader iterator reached the end of the event list. */ 2738 #define VERR_TRACELOG_READER_ITERATOR_END (-26602) 2739 /** @} */ 2740 2730 2741 /* SED-END */ 2731 2742 -
trunk/src/VBox/Runtime/common/log/tracelogreader.cpp
r84491 r84500 52 52 * Structures and Typedefs * 53 53 *********************************************************************************************************************************/ 54 55 /** The trace log is malformed. */56 #define VERR_TRACELOG_READER_MALFORMED_LOG (-25700)57 /** The trace log version is not supported. */58 #define VERR_TRACELOG_READER_LOG_UNSUPPORTED (-25701)59 /** The trace log reader iterator reached the end of the event list. */60 #define VERR_TRACELOG_READER_ITERATOR_END (-25702)61 54 62 55 /** Pointer to a trace log reader instance. */
Note:
See TracChangeset
for help on using the changeset viewer.