📄 mguardscsession.h,v
字号:
head 1.1;access;symbols v1_0:1.1.1.1 xueyw:1.1.1 v111:1.1.1.1 MGuard:1.1.1;locks; strict;comment @ * @;1.1date 2007.08.22.11.21.32; author administrator; state Exp;branches 1.1.1.1;next ;deltatype text;permissions 644;commitid 2e046cc1c3b37f2;kopt kv;filename @MGuardScSession.h@;1.1.1.1date 2007.08.22.11.31.31; author administrator; state Exp;branches;next ;deltatype text;permissions 644;commitid 81046cc1e913f93;kopt kv;filename @MGuardScSession.h@;desc@@1.1log@sc take care of the lock/unlock of the screen@text@/** ============================================================================* Name : MGuardScSession.h* Part of : MGuardScSvr* Created : 18.08.2007 by xueyw* Description:* Exe header file* Version :* Copyright: * ============================================================================*/#ifndef __MGUARDSCSESSION_H__#define __MGUARDSCSESSION_H__#include <e32base.h>// Forward declarationsclass CMGuardScSvr;class CMGuardScSession : public CSession{public: static CMGuardScSession* NewL( RThread& aClient, CMGuardScSvr& aServer ); static CMGuardScSession* NewLC( RThread& aClient, CMGuardScSvr& aServer ); virtual ~CMGuardScSession();public: // New functions /** * SendResultToClient. */ void SendResultToClient();public: void ServiceL( const RMessage& aMessage );private: CMGuardScSession( RThread& aClient, CMGuardScSvr& aServer ); void ConstructL();private: // New methods /** * PanicClient. * Causes the client thread to panic. * @@param aPanic Panic code. */ void PanicClient( TInt aPanic ) const; /** * RequestLockL. * @@param aMessage Message from client. */ void RequestLockL( const RMessage& aMessage ); void RequestUnlockL( const RMessage& aMessage );private: //TBool iWaitingForTick; RMessage iMessage; CMGuardScSvr& iServer;};#endif@1.1.1.1log@no message@text@@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -