| 169 | // ------------------------------------------------------------------------------------------------- |
| 170 | |
| 171 | void |
| 172 | WXMPUtils_UnlockIter_1 ( XMPIteratorRef iterRef, |
| 173 | XMP_OptionBits options ) |
| 174 | { |
| 175 | WXMP_Result * wResult = &void_wResult; // ! Needed to "fool" the EnterWrapper macro. |
| 176 | XMP_ENTER_WRAPPER_NO_LOCK ( "WXMPUtils_UnlockIter_1" ) |
| 177 | |
| 178 | XMPIterator * iter = WtoXMPIterator_Ptr ( iterRef ); |
| 179 | iter->UnlockIter ( options ); |
| 180 | |
| 181 | XMP_EXIT_WRAPPER_NO_THROW |
| 182 | } |
| 183 | |
| 184 | // ================================================================================================= |
| 185 |
nothing calls this directly
no test coverage detected