ac0a462fba
* Instead of launching Tracker/Deskbar directly, we now launch the Login application. * This will now start a new session for the selected user (the password is currently ignored). * When a user session is started, the launch_daemon forks, and the child then restarts the LaunchDaemon application in user mode. * It then registers itself with its parent, in order to resolve user dependent services. * Added a user launch file that will cause Tracker, and Deskbar to start in the new session.
38 lines
640 B
C++
38 lines
640 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_SESSION = 'lnse',
|
|
B_REGISTER_LAUNCH_SESSION = 'lnrs',
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
#endif // LAUNCH_DAEMON_DEFS_H
|
|
|