input-core-private.h 433 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef _INPUT_CORE_PRIVATE_H
  3. #define _INPUT_CORE_PRIVATE_H
  4. /*
  5. * Functions and definitions that are private to input core,
  6. * should not be used by input drivers or handlers.
  7. */
  8. struct input_dev;
  9. void input_mt_release_slots(struct input_dev *dev);
  10. void input_handle_event(struct input_dev *dev,
  11. unsigned int type, unsigned int code, int value);
  12. #endif /* _INPUT_CORE_PRIVATE_H */