FreeRDP/client/X11/xf_client.h

54 lines
1.3 KiB
C
Raw Normal View History

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.
*/
#ifndef FREERDP_CLIENT_X11_CLIENT_H
#define FREERDP_CLIENT_X11_CLIENT_H
2013-04-02 21:22:59 +04:00
#include <winpr/crt.h>
#include <winpr/synch.h>
#include <winpr/thread.h>
#include <winpr/collections.h>
#include <freerdp/api.h>
2013-04-02 21:22:59 +04:00
#include <freerdp/freerdp.h>
#include <freerdp/client.h>
2013-04-02 21:22:59 +04:00
#include <freerdp/gdi/gdi.h>
#include <freerdp/gdi/dc.h>
#include <freerdp/gdi/region.h>
#include <freerdp/cache/cache.h>
#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
*/
2019-11-06 17:24:51 +03:00
FREERDP_API int RdpClientEntry(RDP_CLIENT_ENTRY_POINTS* pEntryPoints);
2013-04-04 02:48:59 +04:00
#ifdef __cplusplus
}
#endif
#endif /* FREERDP_CLIENT_X11_CLIENT_H */