zaz-functions/source/XZAZFunctions.idl

32 lines
850 B
Plaintext

#ifndef __net_elmau_zaz_functions_idl__
#define __net_elmau_zaz_functions_idl__
#include <com/sun/star/uno/XInterface.idl>
module net { module elmau { module zaz { module functions {
interface XZAZFunctions : com::sun::star::uno::XInterface
{
string zreverse([in] string value);
any zeval([in] string value);
sequence< sequence< any > > zxlookup(
[in] any lookup_value,
[in] any lookup_array,
[in] any return_array,
[in] any if_not_found,
[in] any match_mode,
[in] any search_mode);
any zxylookup(
[in] any lookup_value_x,
[in] any lookup_value_y,
[in] any return_array,
[in] any if_not_found);
};
service functions {
interface XZAZFunctions;
};
}; }; }; };
#endif