2011-08-31 04:59:42 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-31 04:59:42 +04:00
|
|
|
* X11 Monitor Handling
|
|
|
|
*
|
|
|
|
* Copyright 2011 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_MONITOR_H
|
|
|
|
#define FREERDP_CLIENT_X11_MONITOR_H
|
2011-08-31 04:59:42 +04:00
|
|
|
|
2013-09-04 05:48:26 +04:00
|
|
|
#include <freerdp/api.h>
|
2011-08-31 04:59:42 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
typedef struct
|
2011-08-31 04:59:42 +04:00
|
|
|
{
|
|
|
|
RECTANGLE_16 area;
|
|
|
|
RECTANGLE_16 workarea;
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL primary;
|
2022-02-14 16:59:22 +03:00
|
|
|
} MONITOR_INFO;
|
2011-08-31 04:59:42 +04:00
|
|
|
|
2022-02-14 16:59:22 +03:00
|
|
|
typedef struct
|
2011-08-31 04:59:42 +04:00
|
|
|
{
|
2024-09-03 15:38:45 +03:00
|
|
|
UINT32 nmonitors;
|
2011-08-31 04:59:42 +04:00
|
|
|
RECTANGLE_16 area;
|
|
|
|
RECTANGLE_16 workarea;
|
|
|
|
MONITOR_INFO* monitors;
|
2022-02-14 16:59:22 +03:00
|
|
|
} VIRTUAL_SCREEN;
|
2011-08-31 04:59:42 +04:00
|
|
|
|
2013-06-15 21:41:05 +04:00
|
|
|
#include "xf_client.h"
|
2013-04-28 08:23:36 +04:00
|
|
|
#include "xfreerdp.h"
|
2011-08-31 04:59:42 +04:00
|
|
|
|
2013-09-04 05:48:26 +04:00
|
|
|
FREERDP_API int xf_list_monitors(xfContext* xfc);
|
2015-04-14 18:03:53 +03:00
|
|
|
FREERDP_API BOOL xf_detect_monitors(xfContext* xfc, UINT32* pWidth, UINT32* pHeight);
|
2015-02-10 23:15:30 +03:00
|
|
|
FREERDP_API void xf_monitors_free(xfContext* xfc);
|
2011-08-31 04:59:42 +04:00
|
|
|
|
2017-06-06 15:01:41 +03:00
|
|
|
#endif /* FREERDP_CLIENT_X11_MONITOR_H */
|