blob: 6885d176e53f770e27b826e09b61717eef711862 [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);
Dominik Behr83864df2016-04-21 12:35:08 -070011bool set_drm_master_relax(void);
Dominik Behr44e07e62016-01-13 19:43:57 -080012
Dominik Behr46c567f2016-03-08 15:11:48 -080013typedef struct {
14 bool daemon;
15 bool enable_vts;
Dominik Behrfd9fdda2016-03-28 17:16:45 -070016 bool splash_only;
Dominik Behrd2530902016-05-05 14:01:06 -070017 bool enable_gfx;
Dominik Behr222936d2016-05-05 13:50:50 -070018 bool no_login;
Dominik Behr46c567f2016-03-08 15:11:48 -080019} commandflags_t;
20
21extern commandflags_t command_flags;
22
Dominik Behr44e07e62016-01-13 19:43:57 -080023#endif