Update contrib.
1 // Copyright (c) 2002-2009 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;
39 virtual void SetDescriptorOnIpcArgs(TIpcArgs& aIpcArgs) const=0;
41 inline TDescriptorType(TInt aArgument, TBufferType aBufferType) : iArgument(aArgument), iBufferType(aBufferType) {}
44 TBufferType iBufferType;
47 class TReadDescriptorType : public TDescriptorType
50 inline TReadDescriptorType(const TDesC8* aBuffer) : TDescriptorType((TInt)aBuffer, EDesC8)
53 inline TReadDescriptorType(const TDesC16* aBuffer) : TDescriptorType((TInt)aBuffer, EDesC16)
56 public: // from TDescriptorType
57 void SetDescriptorOnIpcArgs(TIpcArgs& aIpcArgs) const;
60 class TWriteDescriptorType : public TDescriptorType
63 inline TWriteDescriptorType(TDes8* aBuffer) : TDescriptorType((TInt)aBuffer, EDes8)
66 inline TWriteDescriptorType(TDes16* aBuffer) : TDescriptorType((TInt)aBuffer, EDes16)
69 public: // from TDescriptorType
70 void SetDescriptorOnIpcArgs(TIpcArgs& aIpcArgs) const;