suspend.h 389 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. * Copyright (C) 2012 Nordic Semiconductor Inc.
  7. * Copyright (C) 2012 Instituto Nokia de Tecnologia - INdT
  8. *
  9. *
  10. */
  11. typedef void (*suspend_event) (void);
  12. typedef void (*resume_event) (void);
  13. int suspend_init(suspend_event suspend, resume_event resume);
  14. void suspend_exit(void);