|
|
@@ -2269,7 +2269,7 @@ public:
|
|
|
return Error;
|
|
|
}
|
|
|
|
|
|
- ErrorCodeEnum GetCallStatse(UIService_GetCallStatse_Req &Req, CSmartPointer<IAsynWaitSp> &spAsyncWait, DWORD dwTimeout)
|
|
|
+ ErrorCodeEnum GetCallState(UIService_GetCallState_Req &Req, CSmartPointer<IAsynWaitSp> &spAsyncWait, DWORD dwTimeout)
|
|
|
{
|
|
|
CSmartPointer<IClientSessionFunction> pFunc = GetFunction();
|
|
|
CAutoBuffer Buf = SpObject2Buffer(Req);
|
|
|
@@ -2279,14 +2279,14 @@ public:
|
|
|
DbgToBeidou(m_context, m_pEntityBase != NULL ? m_pEntityBase->GetEntityName() : "")();
|
|
|
m_context = m_context.upgradeLink();
|
|
|
}
|
|
|
- auto ret = pFunc->AsyncRequest(UIService_Method_GetCallStatse, UIService_MethodSignature_GetCallStatse, Buf, spAsyncWait, m_context, dwTimeout);
|
|
|
+ auto ret = pFunc->AsyncRequest(UIService_Method_GetCallState, UIService_MethodSignature_GetCallState, Buf, spAsyncWait, m_context, dwTimeout);
|
|
|
m_context.clear();
|
|
|
return ret;
|
|
|
}
|
|
|
- ErrorCodeEnum GetCallStatse(UIService_GetCallStatse_Req &Req, UIService_GetCallStatse_Ans &Ans, DWORD dwTimeout)
|
|
|
+ ErrorCodeEnum GetCallState(UIService_GetCallState_Req &Req, UIService_GetCallState_Ans &Ans, DWORD dwTimeout)
|
|
|
{
|
|
|
CSmartPointer<IAsynWaitSp> spAsyncWait;
|
|
|
- ErrorCodeEnum Error = GetCallStatse(Req, spAsyncWait, dwTimeout);
|
|
|
+ ErrorCodeEnum Error = GetCallState(Req, spAsyncWait, dwTimeout);
|
|
|
if (Error == Error_Succeed) {
|
|
|
bool bEnd = false;
|
|
|
Error = SpWaitAnswerObject(spAsyncWait, Ans, bEnd, dwTimeout);
|
|
|
@@ -2294,10 +2294,10 @@ public:
|
|
|
}
|
|
|
return Error;
|
|
|
}
|
|
|
- ErrorCodeEnum GetCallStatse(UIService_GetCallStatse_Req &Req, UIService_GetCallStatse_Ans &Ans, DWORD dwTimeout, DWORD &dwUserError, CSimpleString &str)
|
|
|
+ ErrorCodeEnum GetCallState(UIService_GetCallState_Req &Req, UIService_GetCallState_Ans &Ans, DWORD dwTimeout, DWORD &dwUserError, CSimpleString &str)
|
|
|
{
|
|
|
CSmartPointer<IAsynWaitSp> spAsyncWait;
|
|
|
- ErrorCodeEnum Error = GetCallStatse(Req, spAsyncWait, dwTimeout);
|
|
|
+ ErrorCodeEnum Error = GetCallState(Req, spAsyncWait, dwTimeout);
|
|
|
if (Error == Error_Succeed) {
|
|
|
bool bEnd = false;
|
|
|
Error = SpWaitAnswerObject(spAsyncWait, Ans, bEnd, dwUserError, str, dwTimeout);
|
|
|
@@ -2305,10 +2305,10 @@ public:
|
|
|
}
|
|
|
return Error;
|
|
|
}
|
|
|
- ErrorCodeEnum GetCallStatse(UIService_GetCallStatse_Req &Req, UIService_GetCallStatse_Ans &Ans, DWORD dwTimeout, DWORD &dwUserError)
|
|
|
+ ErrorCodeEnum GetCallState(UIService_GetCallState_Req &Req, UIService_GetCallState_Ans &Ans, DWORD dwTimeout, DWORD &dwUserError)
|
|
|
{
|
|
|
CSmartPointer<IAsynWaitSp> spAsyncWait;
|
|
|
- ErrorCodeEnum Error = GetCallStatse(Req, spAsyncWait, dwTimeout);
|
|
|
+ ErrorCodeEnum Error = GetCallState(Req, spAsyncWait, dwTimeout);
|
|
|
if (Error == Error_Succeed) {
|
|
|
bool bEnd = false;
|
|
|
CSimpleString str;
|