mirror of https://github.com/cutefishos/appmotor
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
/***************************************************************************
|
|
**
|
|
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
** All rights reserved.
|
|
** Contact: Nokia Corporation (directui@nokia.com)
|
|
**
|
|
** This file is part of applauncherd
|
|
**
|
|
** If you have questions regarding the use of this file, please contact
|
|
** Nokia at directui@nokia.com.
|
|
**
|
|
** This library is free software; you can redistribute it and/or
|
|
** modify it under the terms of the GNU Lesser General Public
|
|
** License version 2.1 as published by the Free Software Foundation
|
|
** and appearing in the file LICENSE.LGPL included in the packaging
|
|
** of this file.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef INVOKELIB_H
|
|
#define INVOKELIB_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void invoke_send_msg(int fd, uint32_t msg);
|
|
bool invoke_recv_msg(int fd, uint32_t *msg);
|
|
|
|
void invoke_send_str(int fd, char *str);
|
|
|
|
#define INVOKER_M_SOCK "/tmp/boostm"
|
|
#define INVOKER_QT_SOCK "/tmp/boostq"
|
|
#define INVOKER_QDECL_SOCK "/tmp/boostd"
|
|
#define INVOKER_EXEC_SOCK "/tmp/booste"
|
|
// Existence of the test mode control file is checked
|
|
// to enable test mode.
|
|
#define TEST_MODE_CONTROL_FILE "/root/.itm"
|
|
|
|
#endif
|