2010-11-16 22:42:08 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
|
|
* 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 {
|
|
|
|
|
|
|
|
|
2020-03-22 05:22:06 +03:00
|
|
|
class KMessage;
|
2010-11-16 22:42:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
status_t get_extended_team_info(team_id teamID, uint32 flags, KMessage& info);
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _LIBROOT_EXTENDED_SYSTEM_INFO_H */
|