atext/server/inc/atextmetadata.h
branchRCL_3
changeset 16 9f17f914e828
parent 12 9b6d3ca0c601
child 22 786b94c6f0a4
equal deleted inserted replaced
14:f8503e232b0c 16:9f17f914e828
   300      * set when command handling successfully completed.
   300      * set when command handling successfully completed.
   301      * Not own.
   301      * Not own.
   302      */
   302      */
   303     CATExtPluginBase* iOldHandler;
   303     CATExtPluginBase* iOldHandler;
   304 
   304 
       
   305     /**
       
   306      * Pointer to editor handler; set when editor mode started,
       
   307      * NULL when editor mode not active.
       
   308      * Not own.
       
   309      */
       
   310     TATExtPluginEntry* iEditorHandler;
       
   311 
   305     };
   312     };
   306 
   313 
   307 /**
   314 /**
   308  *  Class store data for AT command handling.
   315  *  Class store data for AT command handling.
   309  *  This is basically a helper class for internal usage to pass around data
   316  *  This is basically a helper class for internal usage to pass around data
   519                                  TBool aErrorReply,
   526                                  TBool aErrorReply,
   520                                  TATExtensionReplyType aReplyType,
   527                                  TATExtensionReplyType aReplyType,
   521                                  TBool aMultiPart );
   528                                  TBool aMultiPart );
   522 
   529 
   523     /**
   530     /**
       
   531      * Writes multipart or single part reply buffer to client for handle.
       
   532      * Used for creating a reply for HandleCommand().
       
   533      *
       
   534      * @since S60 5.0
       
   535      * @param aMultiPart ETrue (default behavior) if multipart reply wanted,
       
   536      *                   EFalse otherwise.
       
   537      *                   For multipart replies the reply may be over
       
   538      *                   KDefaultCmdBufLength.
       
   539      * @param aStartOfEditor ETrue if start of editor mode,
       
   540      *                       EFalse otherwise
       
   541      * @return Symbian error code on error, KErrNone otherwise
       
   542      */
       
   543     TInt WriteHandleCmdReplyBuffer( TBool aMultiPart,
       
   544                                     TBool aStartOfEditor );
       
   545 
       
   546     /**
   524      * Clears internal initialized command handler data. This is currently used
   547      * Clears internal initialized command handler data. This is currently used
   525      * only by CompleteCommandMessage() and is called when the data is not
   548      * only by CompleteCommandMessage() and is called when the data is not
   526      * needed anymore. It also prepares the internal data for a new
   549      * needed anymore. It also prepares the internal data for a new
   527      * HandleCommand() call.
   550      * HandleCommand() call.
   528      *
   551      *