Added new private API to get more information on a team:
* Userland interface: get_extended_team_info(). * Syscall: _kern_get_extended_team_info. Only partially implemented yet. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39453 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright 2010, Ingo Weinhold, [email protected].
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
#ifndef _LIBROOT_EXTENDED_SYSTEM_INFO_H
|
||||
#define _LIBROOT_EXTENDED_SYSTEM_INFO_H
|
||||
|
||||
|
||||
/* This is C++ only API. */
|
||||
#ifdef __cplusplus
|
||||
|
||||
|
||||
#include <OS.h>
|
||||
|
||||
|
||||
namespace BPrivate {
|
||||
|
||||
|
||||
struct KMessage;
|
||||
|
||||
|
||||
status_t get_extended_team_info(team_id teamID, uint32 flags, KMessage& info);
|
||||
|
||||
|
||||
} // namespace BPrivate
|
||||
|
||||
|
||||
#endif /* __cplusplus */
|
||||
|
||||
|
||||
#endif /* _LIBROOT_EXTENDED_SYSTEM_INFO_H */
|
||||
Reference in New Issue
Block a user