Files
haiku-beta6/src/kits/app/RegistrarDefs.cpp
T

34 lines
696 B
C++
Raw Normal View History

2006-01-03 09:23:08 +00:00
/*
* Copyright 2001-2005, Haiku.
* Distributed under the terms of the MIT License.
*
* Authors:
* Ingo Weinhold ([email protected])
*/
//! API classes - registrar interface.
#include <AppMisc.h>
#include <RegistrarDefs.h>
2006-01-03 09:23:08 +00:00
namespace BPrivate {
// names
const char *kRegistrarSignature = "application/x-vnd.haiku-registrar";
const char *kRosterThreadName = "_roster_thread_";
const char *kRAppLooperPortName = "rAppLooperPort";
// get_roster_port_name
/*! \brief Returns the name of the main request port of the registrar (roster).
\return the name of the registrar request port.
*/
const char *
get_roster_port_name()
{
2005-07-03 17:04:47 +00:00
return "_haiku_roster_port_";
}
} // namespace BPrivate