Changeset 52533 in vbox for trunk/include
- Timestamp:
- Aug 29, 2014 10:51:39 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95788
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asn1.h
r51999 r52533 1495 1495 uint32_t cbLeft; 1496 1496 /** RTASN1CURSOR_FLAGS_XXX. */ 1497 uint32_t fFlags; 1497 uint8_t fFlags; 1498 /** The cursor depth. */ 1499 uint8_t cDepth; 1500 /** Two bytes reserved for future tricks. */ 1501 uint8_t abReserved[2]; 1498 1502 /** Pointer to the primary cursor. */ 1499 1503 struct RTASN1CURSORPRIMARY *pPrimary; … … 1551 1555 * Initialize a sub-cursor for traversing the content of an ASN.1 object. 1552 1556 * 1553 * @returns @a pChild1557 * @returns IPRT status code. 1554 1558 * @param pParent The parent cursor. 1555 1559 * @param pAsn1Core The ASN.1 object which content we should … … 1558 1562 * @param pszErrorTag The error tag of the sub-cursor. 1559 1563 */ 1560 RTDECL( PRTASN1CURSOR) RTAsn1CursorInitSubFromCore(PRTASN1CURSOR pParent, PRTASN1CORE pAsn1Core,1561 1564 RTDECL(int) RTAsn1CursorInitSubFromCore(PRTASN1CURSOR pParent, PRTASN1CORE pAsn1Core, 1565 PRTASN1CURSOR pChild, const char *pszErrorTag); 1562 1566 1563 1567 /** -
trunk/include/iprt/err.h
r52213 r52533 2082 2082 /** Expected valid data pointer for ASN.1 object. */ 2083 2083 #define VERR_ASN1_INVALID_DATA_POINTER (-22854) 2084 /** The ASN.1 encoding is too deeply nested for the decoder. */ 2085 #define VERR_ASN1_TOO_DEEPLY_NESTED (-22855) 2084 2086 2085 2087 /** ANS.1 internal error 1. */
Note:
See TracChangeset
for help on using the changeset viewer.