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.
 
 
 
 
 
 

47 lines
612 B

#include "shellprv.h"
#include "ids.h"
#include "dlglogic.h"
extern DWORD _DbgLocalAllocCount = 0;
CDataImpl::CDataImpl()
{}
CDataImpl::~CDataImpl()
{}
void CDataImpl::_SetDirty(BOOL fDirty)
{
_fDirty = fDirty;
}
BOOL CDataImpl::IsDirty()
{
return _fDirty;
}
BOOL CDataImpl::IsDeleted()
{
return _fDeleted;
}
BOOL CDataImpl::IsNew()
{
return _fNew;
}
HRESULT CDataImpl::CommitChangesToStorage()
{
return S_FALSE;
}
HRESULT CDataImpl::AddToStorage()
{
return S_FALSE;
}
HRESULT CDataImpl::DeleteFromStorage()
{
return S_FALSE;
}