haiku/src/system/boot/platform/openfirmware/video.cpp
Axel Dörfler 7a3fa7d368 * Followed Ingo's suggestion and removed the now superfluous "length" correction
in ConsoleHandle::WriteAt().
* Updated license.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15581 a95241bf-73f2-0310-859d-f6bbb57e9c96
2005-12-19 09:44:52 +00:00

31 lines
411 B
C++

/*
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <boot/platform.h>
extern "C" void
platform_switch_to_logo(void)
{
// ToDo: implement me
}
extern "C" void
platform_switch_to_text_mode(void)
{
// ToDo: implement me
}
extern "C" status_t
platform_init_video(void)
{
// ToDo: implement me
return B_OK;
}