zaz-functions/source/XZAZFunctions.idl

20 lines
428 B
Plaintext
Raw Permalink 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>
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);
};
service functions {
interface XZAZFunctions;
};
}; }; }; };
#endif