2013-04-02 21:22:59 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
|
|
|
* X11 Client Interface
|
|
|
|
*
|
|
|
|
* Copyright 2013 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#ifndef FREERDP_CLIENT_X11_CLIENT_H
|
|
|
|
#define FREERDP_CLIENT_X11_CLIENT_H
|
2013-04-02 21:22:59 +04:00
|
|
|
|
2014-02-17 05:12:45 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
#include <winpr/synch.h>
|
|
|
|
#include <winpr/thread.h>
|
|
|
|
#include <winpr/collections.h>
|
|
|
|
|
2013-04-02 23:13:10 +04:00
|
|
|
#include <freerdp/api.h>
|
2013-04-02 21:22:59 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
2013-06-16 01:01:10 +04:00
|
|
|
#include <freerdp/client.h>
|
2013-04-02 21:22:59 +04:00
|
|
|
|
2013-04-02 23:13:10 +04:00
|
|
|
#include <freerdp/gdi/gdi.h>
|
|
|
|
#include <freerdp/gdi/dc.h>
|
|
|
|
#include <freerdp/gdi/region.h>
|
2023-02-07 17:42:52 +03:00
|
|
|
|
2013-04-02 23:13:10 +04:00
|
|
|
#include <freerdp/channels/channels.h>
|
|
|
|
|
2013-04-04 02:48:59 +04:00
|
|
|
#ifdef __cplusplus
|
2019-11-06 17:24:51 +03:00
|
|
|
extern "C"
|
|
|
|
{
|
2013-04-04 02:48:59 +04:00
|
|
|
#endif
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
/**
|
|
|
|
* Client Interface
|
|
|
|
*/
|
2013-04-28 08:23:36 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
FREERDP_API int RdpClientEntry(RDP_CLIENT_ENTRY_POINTS* pEntryPoints);
|
2013-04-02 23:13:10 +04:00
|
|
|
|
2013-04-04 02:48:59 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_CLIENT_X11_CLIENT_H */
|