You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.7 KiB
C++

#if ! __WXMPIterator_hpp__
#define __WXMPIterator_hpp__ 1
// =================================================================================================
// Copyright 2002 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms
// of the Adobe license agreement accompanying it.
// =================================================================================================
#include "client-glue/WXMP_Common.hpp"
#if __cplusplus
extern "C" {
#endif
// =================================================================================================
#define zXMPIterator_PropCTor_1(xmpRef,schemaNS,propName,options) \
WXMPIterator_PropCTor_1 ( xmpRef, schemaNS, propName, options, &wResult );
#define zXMPIterator_TableCTor_1(schemaNS,propName,options) \
WXMPIterator_TableCTor_1 ( schemaNS, propName, options, &wResult );
#define zXMPIterator_Next_1(schemaNS,propPath,propValue,options,SetClientString) \
WXMPIterator_Next_1 ( this->iterRef, schemaNS, propPath, propValue, options, SetClientString, &wResult );
#define zXMPIterator_Skip_1(options) \
WXMPIterator_Skip_1 ( this->iterRef, options, &wResult );
// -------------------------------------------------------------------------------------------------
extern void
XMP_PUBLIC WXMPIterator_PropCTor_1 ( XMPMetaRef xmpRef,
XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_OptionBits options,
WXMP_Result * wResult );
extern void
XMP_PUBLIC WXMPIterator_TableCTor_1 ( XMP_StringPtr schemaNS,
XMP_StringPtr propName,
XMP_OptionBits options,
WXMP_Result * wResult );
extern void
XMP_PUBLIC WXMPIterator_IncrementRefCount_1 ( XMPIteratorRef iterRef );
extern void
XMP_PUBLIC WXMPIterator_DecrementRefCount_1 ( XMPIteratorRef iterRef );
extern void
XMP_PUBLIC WXMPIterator_Next_1 ( XMPIteratorRef iterRef,
void * schemaNS,
void * propPath,
void * propValue,
XMP_OptionBits * options,
SetClientStringProc SetClientString,
WXMP_Result * wResult );
extern void
XMP_PUBLIC WXMPIterator_Skip_1 ( XMPIteratorRef iterRef,
XMP_OptionBits options,
WXMP_Result * wResult );
// =================================================================================================
#if __cplusplus
} /* extern "C" */
#endif
#endif // __WXMPIterator_hpp__