Update contrib.
1 // Copyright (c) 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.
14 // openwfcpanic.h: panic definition for OpenWf Interop
18 #ifndef OPENWFCPANIC_H
19 #define OPENWFCPANIC_H
21 enum TOpenWfcPanic // used for OpenWf errors
23 EOwfPanicInvalidCallStreamMap = 1000000, //An attempt was made to construct the stream map singleton
24 EOwfPanicInvalidHasMap, // The stream map is not available
25 EOwfPanicSurfaceStreamBufferNotLocked, //An attempt was made to use or release a surface buffer while it's not locked
26 EOwfPanicSurfaceStreamBufferIndexOutOfBounds, //Out of bounds indexing of surface buffer
27 EOwfUnexpectedErrorInObservers, // Unexpected errors during observers processing
28 EOwfDestroyedWithOpenReaders, // The stream is destroyed while readers are still using it
29 EOwfInvalidSUSDisplayedParameter, // Invalid timestamp detected in the displayed parameter
30 EOwfInvalidSUSDisplayedXTimesParameter, // Invalid parameters relative to DisplayedXTimes observer
31 EOwfSymbianStreamBadArgument, // Bad argument is detected in the Symbian Streams APIs
32 EOwfSymbianStreamUnexpectedError, // Unexpected error encountered in Symbian Stream APIs
33 EOwfSymbianStreamInvalidBufferIndexError, // Attempt to operate with an invalid buffer
34 EOwfSymbianUnexpectedObserverId, // Unexepected Observer Id
37 void Panic(TOpenWfcPanic aPanic);
40 #define WFCI_ASSERT_DEBUG(c, p) \
48 #define WFCI_ASSERT_DEBUG(c, p)
51 #define WFCI_ASSERT_ALWAYS(c, p) \
59 #endif /* OPENWFCPANIC_H */