1 // Copyright (c) 1998-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.
16 #if !defined(__E32BASE_H__)
19 #if !defined (__BIOSCMDS_H__)
20 #define __BIOSCMDS_H__
22 #if !defined (__MSVSTD_HRH__)
26 /** BIO message MTM commands for CBIOClientMtm::InvokeAsyncFunctionL().
28 The behaviour resulting from the command is specific to the BIO message type.
29 Typically, parsing causes an interpretation of the raw message body, and storage
30 of the results. Processing causes some system action to take place according
31 to the instructions in the message. */
33 /** Parse the BIO message. */
34 KBiosMtmParse = KMtmFirstFreeMtmFunctionId,
35 /** Parse then process the BIO message. */
36 KBiosMtmParseThenProcess,
37 /** Process the BIO message. */
42 // progress class (just report a state and an error code)
45 /** Progress information for BIO server MTM.
47 Progress information can be requested using CMsvOperation::ProgressL().
53 /** BIO server MTM state. */
56 /** Waiting for a command. */
58 /** Creating a parser. */
60 /** Parsing a message. */
62 /** Processing a message. */
66 /** BIO server MTM state. */
69 TInt iErrorCode; // client side needs to be informed of an error
70 /** Percentage of operation done. */