c086a1834b
* You can now put jobs/services into a target. * Instead of having Login started as part of the normal boot process, it's now in the "login" target. * The app_server now launches the login target when a login becomes available (ie. during startup, but that could be improved later on).
39 lines
670 B
C++
39 lines
670 B
C++
/*
|
|
* Copyright 2015, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
*/
|
|
#ifndef LAUNCH_DAEMON_DEFS_H
|
|
#define LAUNCH_DAEMON_DEFS_H
|
|
|
|
|
|
//! launch_daemon interface
|
|
|
|
|
|
#include <Errors.h>
|
|
#include <Roster.h>
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
#define kLaunchDaemonSignature "application/x-vnd.Haiku-launch_daemon"
|
|
#define B_LAUNCH_DAEMON_PORT_NAME "system:launch_daemon"
|
|
|
|
|
|
// message constants
|
|
enum {
|
|
B_GET_LAUNCH_DATA = 'lnda',
|
|
B_LAUNCH_TARGET = 'lntg',
|
|
B_LAUNCH_SESSION = 'lnse',
|
|
B_REGISTER_SESSION_DAEMON = 'lnrs',
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
#endif // LAUNCH_DAEMON_DEFS_H
|
|
|