Leaked source code of windows server 2003
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.
|
|
#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; }
|