diff -r 0aa8cc770c8a -r 4a793f564d72 connectivitymodules/SeCon/servers/pcconn/inc/sconpcconnclientserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/connectivitymodules/SeCon/servers/pcconn/inc/sconpcconnclientserver.h Wed Sep 01 12:20:56 2010 +0100 @@ -0,0 +1,70 @@ +/* +* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: PC Connectivity server client +* +*/ + + + + +#ifndef __SCONPCCONNCLIENTSERVER_H__ +#define __SCONPCCONNCLIENTSERVER_H__ + +#include + +// for debugging ConML messages and capability objects +//#define DEBUG_XML + + +// reasons for server panic +enum TPCConnServPanic + { + E_BadRequest = 1, + E_DispatchRequest, + E_InvalidClient, + E_CleanupCreate, + E_MainSchedulerError + }; + + +// server related constants +_LIT( KSConPCConnServerName,"SConPCConnServer" ); +_LIT( KSConPCConnServerExe, "SConPCConnServer.exe" ); + +// client +_LIT( KSConPCConnClientDll, "SConPCConnClient.dll" ); + + +// Chunk +const TUint KSConPCConnChunkSize = 128; +const TUint KSConPCConnChunkMaxSize = 65536; +const TUint KSConPCConnBufferMaxSize = 65000; + +// Version number +const TUint KSConPCConnServerVersionMajor = 1; +const TUint KSConPCConnServerVersionMinor = 0; +const TUint KSConPCConnServerVersionBuild = 1; + + +// Function codes + +enum TRequest +{ + EPutMessage, + EGetMessage, + EResetMessage, + EChunkMessage +}; + +#endif // __SCONPCCONNCLIENTSERVER_H__