OpenCore
1.0.4
OpenCore Bootloader
|
Go to the source code of this file.
Macros | |
#define | POINTER_POLL_DEFAULT 0 |
#define | POINTER_POLL_ALL_MASK (UINT32)(-1) |
Functions | |
APPLE_EVENT_PROTOCOL * | OcAppleEventInstallProtocol (IN BOOLEAN Install, IN BOOLEAN Reinstall, IN BOOLEAN CustomDelays, IN UINT16 KeyInitialDelay, IN UINT16 KeySubsequentDelay, IN BOOLEAN GraphicsInputMirroring, IN UINT32 PointerPollMin, IN UINT32 PointerPollMax, IN UINT32 PointerPollMask, IN UINT16 PointerSpeedDiv, IN UINT16 PointerSpeedMul, IN UINT16 PointerDwellClickTimeout, IN UINT16 PointerDwellDoubleClickTimeout, IN UINT16 PointerDwellRadius) |
Copyright (C) 2019, Download-Fritz. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Definition in file OcAppleEventLib.h.
#define POINTER_POLL_ALL_MASK (UINT32)(-1) |
Definition at line 22 of file OcAppleEventLib.h.
#define POINTER_POLL_DEFAULT 0 |
Definition at line 21 of file OcAppleEventLib.h.
APPLE_EVENT_PROTOCOL * OcAppleEventInstallProtocol | ( | IN BOOLEAN | Install, |
IN BOOLEAN | Reinstall, | ||
IN BOOLEAN | CustomDelays, | ||
IN UINT16 | KeyInitialDelay, | ||
IN UINT16 | KeySubsequentDelay, | ||
IN BOOLEAN | GraphicsInputMirroring, | ||
IN UINT32 | PointerPollMin, | ||
IN UINT32 | PointerPollMax, | ||
IN UINT32 | PointerPollMask, | ||
IN UINT16 | PointerSpeedDiv, | ||
IN UINT16 | PointerSpeedMul, | ||
IN UINT16 | PointerDwellClickTimeout, | ||
IN UINT16 | PointerDwellDoubleClickTimeout, | ||
IN UINT16 | PointerDwellRadius ) |
Install and initialise Apple Event protocol.
[in] | Install | If false, do not install even when no suitable OEM version found. |
[in] | Reinstall | If true, force overwrite installed protocol. If false, use Apple OEM protocol where possible. |
[in] | CustomDelays | If true, use key delays specified. If false, use Apple OEM default key delay values. OC builtin AppleEvent only. |
[in] | KeyInitialDelay | Key repeat initial delay in 10ms units. |
[in] | KeySubsequentDelay | Key repeat subsequent delay in 10ms units. If zero, warn and use 1. |
[in] | GraphicsInputMirroring | If true, disable Apple default behaviour which can prevent keyboard input reaching non-Apple GUI UEFI apps. OC builtin AppleEvent only. |
[in] | PointerPollMin | Pointer polling minimal period in ms. |
[in] | PointerPollMax | Pointer polling maximum period in ms. |
[in] | PointerPollMask | Pointer polling mask to choose polled handles. |
[in] | PointerSpeedDiv | Pointer speed divisor. If zero, warn and use 1. |
[in] | PointerSpeedMul | Pointer speed multiplier. |
[in] | PointerDwellClickTimeout | Pointer dwell-clicking single left click timeout. |
[in] | PointerDwellDoubleClickTimeout | Pointer dwell-clicking single left double click timeout. |
[in] | PointerDwellRadius | Pointer dwell-clicking tolerance radius in pixels. |
installed | or located protocol or NULL. |
Definition at line 556 of file OcAppleEventLib.c.