connectivitymodules/SeCon/servers/pcconn/inc/sconpcconnclientserver.h
branchRCL_3
changeset 19 0aa8cc770c8a
parent 18 453dfc402455
child 20 4a793f564d72
--- a/connectivitymodules/SeCon/servers/pcconn/inc/sconpcconnclientserver.h	Thu Aug 19 10:44:03 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,70 +0,0 @@
-/*
-* 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 <e32base.h>
-
-// 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__