DragonNest/Server/ServiceManager/PatcherSession.h
Cussrro 47f7895977 Revert "修复编码问题"
This reverts commit 9e69c01767.
2024-12-21 10:04:04 +08:00

25 lines
No EOL
523 B
C++

#pragma once
#include "Connection.h"
#include "CriticalSection.h"
class CPatcherSession : public CConnection
{
public:
CPatcherSession();
~CPatcherSession();
int MessageProcess(int iMainCmd, int iSubCmd, char *pData, int iLen);
void SendConnectedResult(const WCHAR * pBaseUrl, const WCHAR * pPatchUrl);
void SendStartNetLauncher();
void SendStopNetLauncher();
bool SendNetLauncherPatch();
void SetPatcherServiceID(int nPSID) { m_nPSID = nPSID; }
int GetPSID() { return m_nPSID; }
protected:
int m_nPSID;
};