xref: /haiku/headers/private/libroot/extended_system_info.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
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 struct 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