Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
623 B

#include "shellprv.h"
#pragma hdrstop
#include "mtptr.h"
/////////////////////////////////////////////////////////////////////////////
//
/////////////////////////////////////////////////////////////////////////////
BOOL CMtPtRemote::_IsRemote()
{
return TRUE;
}
BOOL CMtPtRemote::_IsSlow()
{
BOOL fRet = FALSE;
DWORD dwSpeed = _GetPathSpeed();
if ((0 != dwSpeed) && (dwSpeed <= SPEED_SLOW))
{
fRet = TRUE;
}
TraceMsg(TF_MOUNTPOINT, "static CMountPoint::_IsSlow: for '%s'", _GetNameDebug());
return fRet;
}
BOOL CMtPtRemote::_IsAutorun()
{
return _pshare->fAutorun;
}