18
|
1 |
/**
|
|
2 |
* Copyright (c) 2010 Sasken Communication Technologies Ltd.
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html"
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Chandradeep Gandhi, Sasken Communication Technologies Ltd - Initial contribution
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
* Manasij Roy, Nalina Hariharan
|
|
14 |
*
|
|
15 |
* Description:
|
|
16 |
* Client DLL macro and server executable name
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
#ifndef SMFCLIENTGLOBAL_H_
|
|
21 |
#define SMFCLIENTGLOBAL_H_
|
|
22 |
|
|
23 |
#include <QtCore/QtGlobal>
|
|
24 |
#include <QString>
|
|
25 |
|
|
26 |
#ifdef Q_OS_SYMBIAN
|
|
27 |
_LIT(KSmfServerName,"smfserver");
|
|
28 |
_LIT(KSmfServerSemaphoreName,"smfserverSemaphore");
|
|
29 |
_LIT(KSmfServerFilename,"smfserver");
|
|
30 |
#else
|
|
31 |
const QString KSmfServerName("smfserver");
|
|
32 |
const QString KSmfServerSemaphoreName("smfserverSemaphore");
|
|
33 |
const QString KSmfServerFilename("smfserver");
|
|
34 |
#endif
|
|
35 |
|
|
36 |
|
|
37 |
#ifdef SMFCLIENT_LIB_EXPORT
|
|
38 |
#define SMFCLIENT_EXPORT Q_DECL_EXPORT
|
|
39 |
#else
|
|
40 |
#define SMFCLIENT_EXPORT Q_DECL_IMPORT
|
|
41 |
#endif
|
|
42 |
|
|
43 |
#ifdef SMFCOMMON_LIB_EXPORT
|
|
44 |
#define SMFCOMMON_EXPORT Q_DECL_EXPORT
|
|
45 |
#else
|
|
46 |
#define SMFCOMMON_EXPORT Q_DECL_IMPORT
|
|
47 |
#endif
|
|
48 |
|
|
49 |
|
|
50 |
/**
|
|
51 |
* To be designed later
|
|
52 |
*/
|
|
53 |
#define SMF_GETSERVICES(INTERFACE,INTERFACESTRING)
|
|
54 |
|
|
55 |
#endif /* SMFCLIENTDEFS_H_ */
|