| 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
|---|---|
| 2 | /* |
| 3 | * Driver for Virtual PS/2 Mouse on VMware and QEMU hypervisors. |
| 4 | * |
| 5 | * Copyright (C) 2014, VMware, Inc. All Rights Reserved. |
| 6 | */ |
| 7 | |
| 8 | #ifndef _VMMOUSE_H |
| 9 | #define _VMMOUSE_H |
| 10 | |
| 11 | #define VMMOUSE_PSNAME "VirtualPS/2" |
| 12 | |
| 13 | int vmmouse_detect(struct psmouse *psmouse, bool set_properties); |
| 14 | int vmmouse_init(struct psmouse *psmouse); |
| 15 | |
| 16 | #endif |
| 17 |
