zaz-functions/source/XZAZFunctions.idl

29 lines
788 B
Plaintext
Raw Normal View History

2021-06-27 19:40:07 -05:00
#ifndef __net_elmau_zaz_functions_idl__
#define __net_elmau_zaz_functions_idl__
#include <com/sun/star/uno/XInterface.idl>
2022-02-07 23:44:53 -06:00
#include <com/sun/star/table/XCellRange.idl>
2021-06-27 19:40:07 -05:00
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);
2021-10-09 21:09:19 -05:00
sequence< sequence< any > > zxlookup(
[in] any lookup_value,
2022-02-07 23:44:53 -06:00
[in] com::sun::star::table::XCellRange lookup_array,
[in] com::sun::star::table::XCellRange return_array,
2021-10-09 21:09:19 -05:00
[in] any if_not_found,
[in] any match_mode,
[in] any search_mode);
2021-06-27 19:40:07 -05:00
};
service functions {
interface XZAZFunctions;
};
}; }; }; };
#endif