vmmouse.h 372 B

12345678910111213141516
  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. #ifndef _VMMOUSE_H
  8. #define _VMMOUSE_H
  9. #define VMMOUSE_PSNAME "VirtualPS/2"
  10. int vmmouse_detect(struct psmouse *psmouse, bool set_properties);
  11. int vmmouse_init(struct psmouse *psmouse);
  12. #endif