blob: 503ae8146cf013f9cffad49d8e2a1eedebaa99cd [file] [log] [blame]
Dominik Behr5239cca2016-01-21 18:22:04 -08001/*
2 * Copyright 2016 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef DEV_H
8#define DEV_H
9
10int dev_init(void);
11void dev_close(void);
12void dev_add_existing_input_devs(void);
13void dev_add_fds(fd_set* read_set, fd_set* exception_set, int *maxfd);
14void dev_dispatch_io(fd_set* read_set, fd_set* exception_set);
15
16#endif