1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/remcon/remconserver.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -0,0 +1,69 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// API for the Remote Control server side.
1.18 +// Used by the Remote Control client side library.
1.19 +//
1.20 +//
1.21 +
1.22 +
1.23 +
1.24 +/**
1.25 + @file
1.26 + @internalComponent
1.27 +*/
1.28 +
1.29 +#ifndef REMCONSERVER_H
1.30 +#define REMCONSERVER_H
1.31 +
1.32 +#include <remcon/operationinformation.h>
1.33 +
1.34 +const TUint32 KRemConSrvTUint = 0x101f9067;
1.35 +const TUid KRemConSrvUid = {KRemConSrvTUint};
1.36 +
1.37 +_LIT(KRemConServerImg, "z:\\sys\\bin\\remconserver.exe");
1.38 +
1.39 +_LIT(KRemConServerName, "!RemConSrv");
1.40 +
1.41 +/** Version numbers. */
1.42 +const TInt8 KRemConSrvMajorVersionNumber = 1;
1.43 +const TInt8 KRemConSrvMinorVersionNumber = 1;
1.44 +const TInt16 KRemConSrvBuildNumber = 0;
1.45 +
1.46 +/** IPC messages supported by the server. */
1.47 +enum TRemConIpc
1.48 + {
1.49 + ERemConDbgMarkHeap = 0, // the 1st message must be 0 for CPolicyServer to start up
1.50 + ERemConDbgCheckHeap = 1,
1.51 + ERemConDbgMarkEnd = 2,
1.52 + ERemConDbgFailNext = 3,
1.53 + ERemConSetClientType = 4,
1.54 + ERemConGoConnectionOriented = 5,
1.55 + ERemConGoConnectionless = 6,
1.56 + ERemConConnectBearer = 7,
1.57 + ERemConConnectBearerCancel = 8,
1.58 + ERemConDisconnectBearer = 9,
1.59 + ERemConDisconnectBearerCancel = 10,
1.60 + ERemConSend = 11,
1.61 + ERemConSendCancel = 12,
1.62 + ERemConReceive = 13,
1.63 + ERemConReceiveCancel = 14,
1.64 + ERemConGetConnectionCount = 15,
1.65 + ERemConGetConnections = 16,
1.66 + ERemConNotifyConnectionsChange = 17,
1.67 + ERemConNotifyConnectionsChangeCancel = 18,
1.68 + ERemConRegisterInterestedAPIs = 19,
1.69 + ERemConSendUnreliable = 20,
1.70 + };
1.71 +
1.72 +#endif // REMCONSERVER_H