Commit 9d3f685e authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

git-svn-id:...

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@55480 954022d7-b5bf-4e40-9824-e11837661b57
parent 5940fd31
......@@ -45,8 +45,8 @@ namespace NSThreads
INT m_bRunThread;
INT m_bSuspend;
long m_lError;
long m_lThreadPriority;
int m_lError;
int m_lThreadPriority;
public:
CBaseThread()
......@@ -63,7 +63,7 @@ namespace NSThreads
Stop();
}
public:
virtual void Start(long lPriority)
virtual void Start(int lPriority)
{
if (m_bRunThread)
return;
......@@ -102,7 +102,8 @@ namespace NSThreads
inline INT IsSuspended() { return m_bSuspend; }
inline INT IsRunned() { return m_bRunThread; }
inline long GetError() { return m_lError; }
inline int GetError() { return m_lError; }
inline CThreadDescriptor* GetDescriptor() { return m_hThread; }
inline int GetPriority() { return m_lThreadPriority; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment