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