smf/smfservermodule/smfclient/common/smfclientglobal.h
changeset 18 013a02bf2bb0
parent 17 106a4bfcb866
child 19 c412f0526c34
equal deleted inserted replaced
17:106a4bfcb866 18:013a02bf2bb0
     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 #ifdef Q_OS_SYMBIAN
       
    26 _LIT(KSmfServerName,"smfserver");
       
    27 _LIT(KSmfServerSemaphoreName,"smfserverSemaphore");
       
    28 _LIT(KSmfServerFilename,"smfserver");
       
    29 #else
       
    30 const QString KSmfServerName("smfserver");
       
    31 const QString KSmfServerSemaphoreName("smfserverSemaphore");
       
    32 const QString KSmfServerFilename("smfserver");
       
    33 #endif
       
    34 //TUid KSmfServerUID3 = { 0xE37E0269 };
       
    35 
       
    36  #ifdef SMFCLIENT_LIB_EXPORT
       
    37  #  define SMFCLIENT_EXPORT Q_DECL_EXPORT
       
    38  #else
       
    39  #  define SMFCLIENT_EXPORT Q_DECL_IMPORT
       
    40  #endif
       
    41 
       
    42 /**
       
    43  * To be designed later
       
    44  */
       
    45 #define SMF_GETSERVICES(INTERFACE,INTERFACESTRING) ;
       
    46 #endif /* SMFCLIENTDEFS_H_ */