Ejemplo n.º 1
0
// Sends the process name to be invoked.
static void invoker_send_name(int fd, char *name)
{
    invoke_send_msg(fd, INVOKER_MSG_NAME);
    invoke_send_str(fd, name);
}
Ejemplo n.º 2
0
static void invoker_send_exec(int fd, char *exec)
{
    invoke_send_msg(fd, INVOKER_MSG_EXEC);
    invoke_send_str(fd, exec);
}
Ejemplo n.º 3
0
static void invoker_send_landscape_splash_file(int fd, char *filename)
{
    invoke_send_msg(fd, INVOKER_MSG_LANDSCAPE_SPLASH);
    invoke_send_str(fd, filename);
}