xref: /haiku/headers/private/libroot/extended_system_info.h (revision 899e0ef82b5624ace2ccfa5f5a58c8ebee54aaef)
1 /*
2  * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _LIBROOT_EXTENDED_SYSTEM_INFO_H
6 #define _LIBROOT_EXTENDED_SYSTEM_INFO_H
7 
8 
9 /* This is C++ only API. */
10 #ifdef __cplusplus
11 
12 
13 #include <OS.h>
14 
15 
16 namespace BPrivate {
17 
18 
19 class KMessage;
20 
21 
22 status_t get_extended_team_info(team_id teamID, uint32 flags, KMessage& info);
23 
24 
25 }	// namespace BPrivate
26 
27 
28 #endif	/* __cplusplus */
29 
30 
31 #endif	/* _LIBROOT_EXTENDED_SYSTEM_INFO_H */
32