Mystruct.h
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // Mystruct.h : Declaration of the CMystruct
  2. #ifndef __MYSTRUCT_H_
  3. #define __MYSTRUCT_H_
  4. #include "resource.h"       // main symbols
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMystruct
  7. class ATL_NO_VTABLE CMystruct : 
  8. public CComObjectRootEx<CComSingleThreadModel>,
  9. public CComCoClass<CMystruct, &CLSID_Mystruct>,
  10. public IDispatchImpl<IMystruct, &IID_IMystruct, &LIBID_EXSTRUCTLib>
  11. {
  12. public:
  13. CMystruct()
  14. {
  15. }
  16. DECLARE_REGISTRY_RESOURCEID(IDR_MYSTRUCT)
  17. DECLARE_PROTECT_FINAL_CONSTRUCT()
  18. BEGIN_COM_MAP(CMystruct)
  19. COM_INTERFACE_ENTRY(IMystruct)
  20. COM_INTERFACE_ENTRY(IDispatch)
  21. END_COM_MAP()
  22. // IMystruct
  23. public:
  24. STDMETHOD(SavePerson)(/*[in]*/ UINT number,/*[in]*/ StPerson* Result,/*[out]*/ UINT* pResult);
  25. STDMETHOD(GetAllPerson)(/*[out]*/ UINT* number,/*[out]*/ StPerson** Result);
  26. STDMETHOD(GetPersonById)(/*[in]*/ UINT id,/*[out]*/ StPerson** Result);
  27. };
  28. #endif //__MYSTRUCT_H_