blob: 770f30f4029b6a1e9891bca7cc8b5de0da1ebf27 [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 Behr46c567f2016-03-08 15:11:48 -080018} commandflags_t;
19
20extern commandflags_t command_flags;
21
Dominik Behr44e07e62016-01-13 19:43:57 -080022#endif