genode/repos/demo/src/app/scout/config.h

28 lines
529 B
C
Raw Permalink Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Scout configuration
* \date 2005-11-10
* \author Norman Feske <norman.feske@genode-labs.com>
*/
/*
* Copyright (C) 2005-2017 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
2011-12-22 16:19:25 +01:00
*/
#ifndef _CONFIG_H_
#define _CONFIG_H_
namespace Scout { struct Config; }
2011-12-22 16:19:25 +01:00
struct Scout::Config
{
bool background_detail = 1;
bool mouse_cursor = 0;
int browser_attr = 7;
};
2011-12-22 16:19:25 +01:00
#endif /* _CONFIG_H_ */