| 76 | // ------------------------------------------------------------------------------------------------- |
| 77 | |
| 78 | void |
| 79 | WXMPIterator_IncrementRefCount_1 ( XMPIteratorRef iterRef ) |
| 80 | { |
| 81 | WXMP_Result * wResult = &void_wResult; // ! Needed to "fool" the EnterWrapper macro. |
| 82 | XMP_ENTER_WRAPPER ( "WXMPIterator_IncrementRefCount_1" ) |
| 83 | |
| 84 | XMPIterator * thiz = (XMPIterator*)iterRef; |
| 85 | |
| 86 | ++thiz->clientRefs; |
| 87 | XMP_Assert ( thiz->clientRefs > 1 ); |
| 88 | |
| 89 | XMP_EXIT_WRAPPER_NO_THROW |
| 90 | } |
| 91 | |
| 92 | // ------------------------------------------------------------------------------------------------- |
| 93 |
nothing calls this directly
no outgoing calls
no test coverage detected