genode/demo/src/server/liquid_framebuffer/services.h

29 lines
668 B
C

/*
* \brief Fb_nit-internal service interface
* \author Norman Feske
* \date 2006-09-22
*/
/*
* Copyright (C) 2006-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _SERVICES_H_
#define _SERVICES_H_
#include <base/rpc_server.h>
#include <scout/canvas.h>
#include "elements.h"
extern Scout::Element *window_content();
extern void init_window_content(unsigned fb_w, unsigned fb_h, bool config_alpha);
extern void init_services(Genode::Rpc_entrypoint &ep);
extern void lock_window_content();
extern void unlock_window_content();
#endif