f78d32a251
Removed unused keyboard.h header. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3135 a95241bf-73f2-0310-859d-f6bbb57e9c96
17 lines
281 B
C
Executable File
17 lines
281 B
C
Executable File
/*
|
|
** Copyright 2001, Travis Geiselbrecht. All rights reserved.
|
|
** Distributed under the terms of the NewOS License.
|
|
*/
|
|
#ifndef _CONSOLE_DEV_H
|
|
#define _CONSOLE_DEV_H
|
|
|
|
struct kernel_args;
|
|
|
|
int console_dev_init(struct kernel_args *ka);
|
|
|
|
enum {
|
|
CONSOLE_OP_WRITEXY = 2376
|
|
};
|
|
|
|
#endif
|