txtviewerservice.h

来自「最常用的短信息功能实现」· C头文件 代码 · 共 41 行

H
41
字号


#ifndef MTXTSERVICE_H
#define MTXTSERVICE_H


#include <AknServerApp.h>
#include <ApaServerApp.h>

#include <MsvApi.h>

class TEditorParameters
{
	public:
	TInt iEntry;
	TBool iOpenedForEditing;
	
};



// client side API class

class RTxtViewerService : public RAknAppServiceBase
	{
	public: 
		/**
		* Sends a command to the server
		*
		*/
		void OpenL(TEditorParameters aParams);
		
	private: // From RApaAppServiceBase
		/**
		* Returns the uid of the service this is here for the framework
		*/
		TUid ServiceUid() const;
	};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?