Update contrib.
1 // Copyright (c) 2002-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #if !defined(__W32COMM_H__)
21 const TUint KBufferMessageSlot =0;
22 const TUint KReplyBufferMessageSlot =1;
23 const TUint KRemoteBufferMessageSlot =2;
25 const TUint KAsyncMessageSlotAnimDllHandle =0;
26 const TUint KAsyncMessageSlotAnimHandle =1;
27 const TUint KMaxWservStringSize =600;
29 inline TInt PadValue(TInt aValue)
31 TInt padding=aValue&0x3;
37 inline TInt PaddedValue(TInt aValue)
39 return aValue + PadValue(aValue);
53 virtual void SetDescriptorOnIpcArgs(TIpcArgs& aIpcArgs) const=0;
55 inline TDescriptorType(TInt aArgument, TBufferType aBufferType) : iArgument(aArgument), iBufferType(aBufferType) {}
58 TBufferType iBufferType;
61 class TReadDescriptorType : public TDescriptorType
64 inline TReadDescriptorType(const TDesC8* aBuffer) : TDescriptorType((TInt)aBuffer, EDesC8)
67 inline TReadDescriptorType(const TDesC16* aBuffer) : TDescriptorType((TInt)aBuffer, EDesC16)
70 public: // from TDescriptorType
71 void SetDescriptorOnIpcArgs(TIpcArgs& aIpcArgs) const;
74 class TWriteDescriptorType : public TDescriptorType
77 inline TWriteDescriptorType(TDes8* aBuffer) : TDescriptorType((TInt)aBuffer, EDes8)
80 inline TWriteDescriptorType(TDes16* aBuffer) : TDescriptorType((TInt)aBuffer, EDes16)
83 public: // from TDescriptorType
84 void SetDescriptorOnIpcArgs(TIpcArgs& aIpcArgs) const;