2007-10-11 01:30:51 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2002-2007, Ingo Weinhold, bonefish@users.sf.net.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2002-07-28 23:26:21 +04:00
|
|
|
#ifndef _APP_MISC_H
|
|
|
|
#define _APP_MISC_H
|
|
|
|
|
2003-03-19 11:00:50 +03:00
|
|
|
#include <Handler.h>
|
2007-10-11 01:30:51 +04:00
|
|
|
#include <Locker.h>
|
2002-07-28 23:26:21 +04:00
|
|
|
#include <OS.h>
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
struct entry_ref;
|
|
|
|
|
2002-10-13 02:40:21 +04:00
|
|
|
namespace BPrivate {
|
|
|
|
|
2007-10-11 01:30:51 +04:00
|
|
|
// Global lock that can be used e.g. to initialize singletons.
|
|
|
|
extern BLocker gInitializationLock;
|
|
|
|
|
2005-07-15 16:15:21 +04:00
|
|
|
status_t get_app_path(team_id team, char *buffer);
|
2002-07-28 23:26:21 +04:00
|
|
|
status_t get_app_path(char *buffer);
|
2005-07-15 16:15:21 +04:00
|
|
|
status_t get_app_ref(team_id team, entry_ref *ref, bool traverse = true);
|
2002-07-28 23:26:21 +04:00
|
|
|
status_t get_app_ref(entry_ref *ref, bool traverse = true);
|
|
|
|
|
2002-10-13 02:40:21 +04:00
|
|
|
team_id current_team();
|
2002-07-28 23:26:21 +04:00
|
|
|
thread_id main_thread_for(team_id team);
|
|
|
|
|
2005-01-17 04:20:22 +03:00
|
|
|
bool is_running_on_haiku();
|
|
|
|
|
2005-07-07 19:30:44 +04:00
|
|
|
bool is_app_showing_modal_window(team_id team);
|
|
|
|
|
2002-10-13 02:40:21 +04:00
|
|
|
} // namespace BPrivate
|
|
|
|
|
2003-03-19 11:00:50 +03:00
|
|
|
// _get_object_token_
|
|
|
|
/*! Return the token of a BHandler.
|
|
|
|
|
|
|
|
\param handler The BHandler.
|
|
|
|
\return the token.
|
|
|
|
|
|
|
|
*/
|
|
|
|
inline int32 _get_object_token_(const BHandler* object)
|
|
|
|
{ return object->fToken; }
|
|
|
|
|
2002-07-28 23:26:21 +04:00
|
|
|
#endif // _APP_MISC_H
|