xref: /haiku/src/kits/app/RegistrarDefs.cpp (revision 16d5c24e533eb14b7b8a99ee9f3ec9ba66335b1e)
1 /*
2  * Copyright 2001-2005, Haiku.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Ingo Weinhold (bonefish@users.sf.net)
7  */
8 
9 //! API classes - registrar interface.
10 
11 
12 #include <AppMisc.h>
13 #include <RegistrarDefs.h>
14 
15 
16 namespace BPrivate {
17 
18 // names
19 const char *kRegistrarSignature	= "application/x-vnd.haiku-registrar";
20 const char *kRosterThreadName	= "_roster_thread_";
21 const char *kRAppLooperPortName	= "rAppLooperPort";
22 
23 // get_roster_port_name
24 /*!	\brief Returns the name of the main request port of the registrar (roster).
25 	\return the name of the registrar request port.
26 */
27 const char *
28 get_roster_port_name()
29 {
30 	return "_haiku_roster_port_";
31 }
32 
33 }	// namespace BPrivate
34