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