Files
haiku-beta6/src/kits/app/RegistrarDefs.cpp
T
Axel Dörfler 5edcfe9619 Cleanup!
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15806 a95241bf-73f2-0310-859d-f6bbb57e9c96
2006-01-03 09:23:08 +00:00

34 lines
696 B
C++

/*
* 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>
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()
{
return "_haiku_roster_port_";
}
} // namespace BPrivate