Browse Source

!2 easy define

chenliangyu 5 months ago
parent
commit
dd5ac173d8

+ 2 - 0
Module/mod_guiconsole/mod_GuiConsole.h

@@ -45,6 +45,8 @@ public:
 	virtual void Handle_OpenCommonPage(SpReqAnsContext<GUIConsoleService_OpenCommonPage_Req, GUIConsoleService_OpenCommonPage_Ans>::Pointer ctx);
 
 	virtual void Handle_CloseCommonPage(SpReqAnsContext<GUIConsoleService_CloseCommonPage_Req, GUIConsoleService_CloseCommonPage_Ans>::Pointer ctx);
+
+	virtual void Handle_ReservedCall(SpReqAnsContext<GUIConsoleService_ReservedCall_Req, GUIConsoleService_ReservedCall_Ans>::Pointer ctx);
 private:
 	CGUIConsoleEntity* m_pEntity;
 };

+ 6 - 0
Module/mod_guiconsole/mod_guiconsole.cpp

@@ -1045,6 +1045,12 @@ void CGUIConsoleSession::Handle_CloseCommonPage(SpReqAnsContext<GUIConsoleServic
 		ctx->Answer(ErrorCodeEnum::Error_Unexpect);
 }
 
+void CGUIConsoleSession::Handle_ReservedCall(SpReqAnsContext<GUIConsoleService_ReservedCall_Req, GUIConsoleService_ReservedCall_Ans>::Pointer ctx)
+{
+
+}
+
+
 CSimpleString CGUIConsoleEntity::getRunVersion()
 {
 	static CSimpleStringA activeVer;