1 /* 2 * Copyright 2001-2015, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Ingo Weinhold (bonefish@users.sf.net) 7 */ 8 9 10 //! API classes - registrar interface. 11 12 13 #include <AppMisc.h> 14 #include <RegistrarDefs.h> 15 16 17 namespace BPrivate { 18 19 20 // names 21 #ifdef HAIKU_TARGET_PLATFORM_HAIKU 22 const char* kRAppLooperPortName = "rAppLooperPort"; 23 #else 24 const char* kRAppLooperPortName = "haiku-test:rAppLooperPort"; 25 #endif 26 27 28 } // namespace BPrivate 29