IPS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //**********************************************************************
  2. // File name: ips.h
  3. //
  4. //      Definition of CPersistStorage
  5. //
  6. // Copyright (c) 1993-1997 Microsoft Corporation. All rights reserved.
  7. //**********************************************************************
  8. #if !defined( _IPS_H_)
  9. #define _IPS_H_
  10. #include <ole2.h>
  11. //@@WTK WIN32, UNICODE
  12. //#include <storage.h>
  13. #include "obj.h"
  14. class CSimpSvrObj;
  15. interface CPersistStorage : IPersistStorage
  16. {
  17. private:
  18. CSimpSvrObj FAR * m_lpObj;
  19. int m_nCount;
  20. BOOL m_fSameAsLoad;
  21. public:
  22. CPersistStorage::CPersistStorage(CSimpSvrObj FAR * lpSimpSvrObj)
  23. {
  24. m_lpObj = lpSimpSvrObj;
  25. m_nCount = 0;
  26. };
  27. CPersistStorage::~CPersistStorage() {};
  28. STDMETHODIMP QueryInterface (REFIID riid, LPVOID FAR* ppvObj);
  29. STDMETHODIMP_(ULONG) AddRef ();
  30. STDMETHODIMP_(ULONG) Release ();
  31. STDMETHODIMP InitNew (LPSTORAGE pStg);
  32. STDMETHODIMP GetClassID  ( LPCLSID lpClassID) ;
  33. STDMETHODIMP Save  ( LPSTORAGE pStgSave, BOOL fSameAsLoad) ;
  34. STDMETHODIMP SaveCompleted  ( LPSTORAGE pStgNew);
  35. STDMETHODIMP Load  ( LPSTORAGE pStg);
  36. STDMETHODIMP IsDirty  ();
  37. STDMETHODIMP HandsOffStorage  ();
  38. void ReleaseStreamsAndStorage();
  39. void OpenStreams(LPSTORAGE lpStg);
  40. void CreateStreams(LPSTORAGE lpStg);
  41. void CreateStreams(LPSTORAGE lpStg, LPSTREAM FAR *lpTempColor, LPSTREAM FAR *lpTempSize);
  42. };
  43. #endif