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.

30 lines
763 B

  1. // ShadowDocument.h: interface for the CShadowDocument class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SHADOWDOCUMENT_H__70EC6ED7_9549_11D2_95DE_00C04F8E7A70__INCLUDED_)
  5. #define AFX_SHADOWDOCUMENT_H__70EC6ED7_9549_11D2_95DE_00C04F8E7A70__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CShadowDocument
  10. {
  11. public:
  12. LPWSTR getLocalFilename();
  13. BOOL Update();
  14. ~CShadowDocument();
  15. CShadowDocument(BOOL encrypted,
  16. LPSTR server, LPSTR doc,
  17. LPTSTR localFilename);
  18. protected:
  19. _bstr_t m_localFilename;
  20. _bstr_t m_doc;
  21. _bstr_t m_server;
  22. BOOL m_encrypted;
  23. };
  24. #endif // !defined(AFX_SHADOWDOCUMENT_H__70EC6ED7_9549_11D2_95DE_00C04F8E7A70__INCLUDED_)