133bc51b9SAriel Constenla-Haile/**************************************************************
233bc51b9SAriel Constenla-Haile *
333bc51b9SAriel Constenla-Haile * Licensed to the Apache Software Foundation (ASF) under one
433bc51b9SAriel Constenla-Haile * or more contributor license agreements.  See the NOTICE file
533bc51b9SAriel Constenla-Haile * distributed with this work for additional information
633bc51b9SAriel Constenla-Haile * regarding copyright ownership.  The ASF licenses this file
733bc51b9SAriel Constenla-Haile * to you under the Apache License, Version 2.0 (the
833bc51b9SAriel Constenla-Haile * "License"); you may not use this file except in compliance
933bc51b9SAriel Constenla-Haile * with the License.  You may obtain a copy of the License at
1033bc51b9SAriel Constenla-Haile *
1133bc51b9SAriel Constenla-Haile *   http://www.apache.org/licenses/LICENSE-2.0
1233bc51b9SAriel Constenla-Haile *
1333bc51b9SAriel Constenla-Haile * Unless required by applicable law or agreed to in writing,
1433bc51b9SAriel Constenla-Haile * software distributed under the License is distributed on an
1533bc51b9SAriel Constenla-Haile * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1633bc51b9SAriel Constenla-Haile * KIND, either express or implied.  See the License for the
1733bc51b9SAriel Constenla-Haile * specific language governing permissions and limitations
1833bc51b9SAriel Constenla-Haile * under the License.
1933bc51b9SAriel Constenla-Haile *
2033bc51b9SAriel Constenla-Haile *************************************************************/
2133bc51b9SAriel Constenla-Haile
22*ae77b8caSAriel Constenla-Haile#ifndef __com_sun_star_system_XSystemMailProvider_idl__
23*ae77b8caSAriel Constenla-Haile#define __com_sun_star_system_XSystemMailProvider_idl__
2433bc51b9SAriel Constenla-Haile
25*ae77b8caSAriel Constenla-Haile#include <com/sun/star/uno/XInterface.idl>
26*ae77b8caSAriel Constenla-Haile#include <com/sun/star/system/XMailClient.idl>
2733bc51b9SAriel Constenla-Haile
2833bc51b9SAriel Constenla-Hailemodule com { module sun { module star { module system {
2933bc51b9SAriel Constenla-Haile
30*ae77b8caSAriel Constenla-Haile/** Provides access to a mail client, if there is one available on the system.
31*ae77b8caSAriel Constenla-Haile*/
32*ae77b8caSAriel Constenla-Haileinterface XSystemMailProvider
3333bc51b9SAriel Constenla-Haile{
34*ae77b8caSAriel Constenla-Haile    /** Allows a client to query for an object that implements
35*ae77b8caSAriel Constenla-Haile        <type>XMailClient</type>.
36*ae77b8caSAriel Constenla-Haile
37*ae77b8caSAriel Constenla-Haile        @returns
38*ae77b8caSAriel Constenla-Haile            An interface to a mail client if there is one available
39*ae77b8caSAriel Constenla-Haile            on the system, or an empty reference otherwise.
40*ae77b8caSAriel Constenla-Haile    */
41*ae77b8caSAriel Constenla-Haile    XMailClient queryMailClient( );
4233bc51b9SAriel Constenla-Haile};
4333bc51b9SAriel Constenla-Haile
4433bc51b9SAriel Constenla-Haile}; }; }; };
4533bc51b9SAriel Constenla-Haile
4633bc51b9SAriel Constenla-Haile#endif
47