7a3fa7d368
in ConsoleHandle::WriteAt(). * Updated license. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15581 a95241bf-73f2-0310-859d-f6bbb57e9c96
31 lines
411 B
C++
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;
|
|
}
|
|
|