blob: b0d5588b6ecfbd92984516c9a3c7f4bcb55a8c05 [file] [log] [blame]
Dominik Behr44e07e62016-01-13 19:43:57 -08001/*
2 * Copyright (c) 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 MAIN_H
8#define MAIN_H
9
10int main_process_events(uint32_t usec);
11
Dominik Behr46c567f2016-03-08 15:11:48 -080012typedef struct {
13 bool daemon;
14 bool enable_vts;
15} commandflags_t;
16
17extern commandflags_t command_flags;
18
Dominik Behr44e07e62016-01-13 19:43:57 -080019#endif