/* * \brief Kernel-specific part of the PD-session interface * \author Norman Feske * \date 2016-01-19 * * This definition is used on platforms with no kernel-specific PD functions */ /* * Copyright (C) 2016 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 _CORE__INCLUDE__NATIVE_PD_COMPONENT_H_ #define _CORE__INCLUDE__NATIVE_PD_COMPONENT_H_ /* Genode includes */ #include /* core-local includes */ #include namespace Genode { class Pd_session_component; class Native_pd_component; } struct Genode::Native_pd_component { Native_pd_component(Pd_session_component &, char const *) { } Capability cap() { return Capability(); } }; #endif /* _CORE__INCLUDE__NATIVE_PD_COMPONENT_H_ */