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.

35 lines
909 B

  1. // MsgBox.h : Declaration of the CMsgBox
  2. #ifndef __MSGBOX_H_
  3. #define __MSGBOX_H_
  4. #include "resource.h" // main symbols
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CMsgBox
  7. class ATL_NO_VTABLE CMsgBox :
  8. public CComObjectRootEx<CComSingleThreadModel>,
  9. public CComCoClass<CMsgBox, &CLSID_MsgBox>,
  10. public IDispatchImpl<IMsgBox, &IID_IMsgBox, &LIBID_RCBDYCTLLib>
  11. {
  12. public:
  13. CMsgBox()
  14. {
  15. }
  16. DECLARE_REGISTRY_RESOURCEID(IDR_MSGBOX)
  17. DECLARE_PROTECT_FINAL_CONSTRUCT()
  18. BEGIN_COM_MAP(CMsgBox)
  19. COM_INTERFACE_ENTRY(IMsgBox)
  20. COM_INTERFACE_ENTRY(IDispatch)
  21. END_COM_MAP()
  22. // IMsgBox
  23. public:
  24. STDMETHOD(DeleteTicketMsgBox)(BOOL *pRetVal);
  25. STDMETHOD(ShowTicketDetails)(/*[in]*/BSTR bstrTitleSavedTo,/*[in]*/ BSTR bstrSavedTo,/*[in]*/ BSTR bstrExpTime,/*[in]*/ BSTR bstrStatus,/*[in]*/ BSTR bstrIsPwdProtected);
  26. };
  27. #endif //__MSGBOX_H_