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.

46 lines
612 B

  1. #include "shellprv.h"
  2. #include "ids.h"
  3. #include "dlglogic.h"
  4. extern DWORD _DbgLocalAllocCount = 0;
  5. CDataImpl::CDataImpl()
  6. {}
  7. CDataImpl::~CDataImpl()
  8. {}
  9. void CDataImpl::_SetDirty(BOOL fDirty)
  10. {
  11. _fDirty = fDirty;
  12. }
  13. BOOL CDataImpl::IsDirty()
  14. {
  15. return _fDirty;
  16. }
  17. BOOL CDataImpl::IsDeleted()
  18. {
  19. return _fDeleted;
  20. }
  21. BOOL CDataImpl::IsNew()
  22. {
  23. return _fNew;
  24. }
  25. HRESULT CDataImpl::CommitChangesToStorage()
  26. {
  27. return S_FALSE;
  28. }
  29. HRESULT CDataImpl::AddToStorage()
  30. {
  31. return S_FALSE;
  32. }
  33. HRESULT CDataImpl::DeleteFromStorage()
  34. {
  35. return S_FALSE;
  36. }