545ecbe86d
as well as architecture specific stuff. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10313 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
478 B
C
26 lines
478 B
C
/*
|
|
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_SYSTEM_INFO_H
|
|
#define _KERNEL_SYSTEM_INFO_H
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
struct kernel_args;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern status_t system_info_init(struct kernel_args *args);
|
|
extern status_t _user_get_system_info(system_info *userInfo, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KRENEL_SYSTEM_INFO_H */
|