77 lines
2.3 KiB
C
77 lines
2.3 KiB
C
/**
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
* Input Interface API
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __INPUT_API_H
|
|
#define __INPUT_API_H
|
|
|
|
/* Input Events */
|
|
#define INPUT_EVENT_SYNC 0x0000
|
|
#define INPUT_EVENT_SCANCODE 0x0004
|
|
#define INPUT_EVENT_UNICODE 0x0005
|
|
#define INPUT_EVENT_MOUSE 0x8001
|
|
#define INPUT_EVENT_MOUSEX 0x8002
|
|
|
|
/* keyboard Flags */
|
|
#define KBD_FLAGS_EXTENDED 0x0100
|
|
#define KBD_FLAGS_DOWN 0x4000
|
|
#define KBD_FLAGS_RELEASE 0x8000
|
|
|
|
/* Pointer Flags */
|
|
#define PTR_FLAGS_WHEEL 0x0200
|
|
#define PTR_FLAGS_WHEEL_NEGATIVE 0x0100
|
|
#define PTR_FLAGS_MOVE 0x0800
|
|
#define PTR_FLAGS_DOWN 0x8000
|
|
#define PTR_FLAGS_BUTTON1 0x1000
|
|
#define PTR_FLAGS_BUTTON2 0x2000
|
|
#define PTR_FLAGS_BUTTON3 0x4000
|
|
#define WheelRotationMask 0x01FF
|
|
|
|
/* Extended Pointer Flags */
|
|
#define PTR_XFLAGS_DOWN 0x8000
|
|
#define PTR_XFLAGS_BUTTON1 0x0001
|
|
#define PTR_XFLAGS_BUTTON2 0x0002
|
|
|
|
/* Keyboard Toggle Flags */
|
|
#define KBD_SYNC_SCROLL_LOCK 0x00000001
|
|
#define KBD_SYNC_NUM_LOCK 0x00000002
|
|
#define KBD_SYNC_CAPS_LOCK 0x00000004
|
|
#define KBD_SYNC_KANA_LOCK 0x00000008
|
|
|
|
#define RDP_CLIENT_INPUT_PDU_HEADER_LENGTH 4
|
|
|
|
typedef struct rdp_input rdpInput;
|
|
|
|
typedef void (*pcSynchronizeEvent)(rdpInput* input, uint32 flags);
|
|
typedef void (*pcKeyboardEvent)(rdpInput* input, uint16 flags, uint16 code);
|
|
typedef void (*pcUnicodeKeyboardEvent)(rdpInput* input, uint16 code);
|
|
typedef void (*pcMouseEvent)(rdpInput* input, uint16 flags, uint16 x, uint16 y);
|
|
typedef void (*pcExtendedMouseEvent)(rdpInput* input, uint16 flags, uint16 x, uint16 y);
|
|
|
|
struct rdp_input
|
|
{
|
|
void* rdp;
|
|
pcSynchronizeEvent SynchronizeEvent;
|
|
pcKeyboardEvent KeyboardEvent;
|
|
pcUnicodeKeyboardEvent UnicodeKeyboardEvent;
|
|
pcMouseEvent MouseEvent;
|
|
pcExtendedMouseEvent ExtendedMouseEvent;
|
|
};
|
|
|
|
#endif /* __INPUT_API_H */
|