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.

22 lines
635 B

  1. // ObjCopy.h: interface for the CObjCopy class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_OBJCOPY_H__B6132030_227D_11D3_8C86_0090270D48D1__INCLUDED_)
  5. #define AFX_OBJCOPY_H__B6132030_227D_11D3_8C86_0090270D48D1__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CObjCopy
  10. {
  11. public:
  12. CString m_strCont;
  13. HRESULT CopyObject(CString a_strSource, CString a_strSrcDomain, CString a_strTarget, CString a_strTgtDomain);
  14. CObjCopy(CString a_strContainer);
  15. virtual ~CObjCopy();
  16. };
  17. #endif // !defined(AFX_OBJCOPY_H__B6132030_227D_11D3_8C86_0090270D48D1__INCLUDED_)