2011-07-27 20:14:12 -04:00
|
|
|
/**
|
2012-10-08 23:02:04 -04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-27 20:14:12 -04:00
|
|
|
* Input PDUs
|
|
|
|
|
*
|
|
|
|
|
* 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 14:01:41 +02:00
|
|
|
#ifndef FREERDP_LIB_CORE_INPUT_H
|
|
|
|
|
#define FREERDP_LIB_CORE_INPUT_H
|
2011-07-27 20:14:12 -04:00
|
|
|
|
|
|
|
|
#include "rdp.h"
|
2011-08-16 14:37:11 +08:00
|
|
|
#include "fastpath.h"
|
2013-02-04 11:05:24 -05:00
|
|
|
#include "message.h"
|
2011-07-27 20:14:12 -04:00
|
|
|
|
2011-07-28 00:38:25 -04:00
|
|
|
#include <freerdp/input.h>
|
2011-07-27 20:14:12 -04:00
|
|
|
#include <freerdp/freerdp.h>
|
2016-08-10 09:12:55 +02:00
|
|
|
#include <freerdp/api.h>
|
2013-03-21 16:45:25 -04:00
|
|
|
|
|
|
|
|
#include <winpr/stream.h>
|
2011-07-27 20:14:12 -04:00
|
|
|
|
2022-01-11 16:08:44 +01:00
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
rdpInput common;
|
|
|
|
|
/* Internal */
|
|
|
|
|
|
|
|
|
|
rdpInputProxy* proxy;
|
|
|
|
|
wMessageQueue* queue;
|
2023-10-19 11:53:50 +02:00
|
|
|
|
2024-04-12 08:44:02 +02:00
|
|
|
UINT64 lastInputTimestamp;
|
2023-10-19 11:53:50 +02:00
|
|
|
UINT16 lastX;
|
|
|
|
|
UINT16 lastY;
|
2025-11-18 14:21:26 +01:00
|
|
|
wLog* log;
|
2022-01-11 16:08:44 +01:00
|
|
|
} rdp_input_internal;
|
|
|
|
|
|
2025-09-22 12:19:02 +02:00
|
|
|
static inline rdp_input_internal* input_cast(rdpInput* input)
|
2022-01-11 16:08:44 +01:00
|
|
|
{
|
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
rdpInput* pub;
|
|
|
|
|
rdp_input_internal* internal;
|
|
|
|
|
} cnv;
|
|
|
|
|
|
|
|
|
|
WINPR_ASSERT(input);
|
|
|
|
|
cnv.pub = input;
|
|
|
|
|
return cnv.internal;
|
|
|
|
|
}
|
2025-11-18 14:21:26 +01:00
|
|
|
|
2016-08-10 09:12:55 +02:00
|
|
|
FREERDP_LOCAL BOOL input_recv(rdpInput* input, wStream* s);
|
2012-02-07 13:38:27 +01:00
|
|
|
|
2016-08-10 09:12:55 +02:00
|
|
|
FREERDP_LOCAL int input_process_events(rdpInput* input);
|
|
|
|
|
FREERDP_LOCAL BOOL input_register_client_callbacks(rdpInput* input);
|
2011-08-23 11:50:41 +08:00
|
|
|
|
2016-08-10 09:12:55 +02:00
|
|
|
FREERDP_LOCAL void input_free(rdpInput* input);
|
2011-07-27 20:14:12 -04:00
|
|
|
|
2024-01-26 13:09:00 +01:00
|
|
|
WINPR_ATTR_MALLOC(input_free, 1)
|
2026-01-26 13:08:35 +01:00
|
|
|
WINPR_ATTR_NODISCARD
|
2024-01-26 13:09:00 +01:00
|
|
|
FREERDP_LOCAL rdpInput* input_new(rdpRdp* rdp);
|
|
|
|
|
|
2017-06-06 14:01:41 +02:00
|
|
|
#endif /* FREERDP_LIB_CORE_INPUT_H */
|