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.

44 lines
1.3 KiB

  1. // private.h
  2. // Copyright (c)1997-1999 Microsoft Corporation, All Rights Reserved
  3. // Private interfaces for DHTMLED
  4. // Include this in the file which used <initguid.h>
  5. #ifndef __DHTMLED_PRIVATE_H__
  6. #define __DHTMLED_PRIVATE_H__
  7. typedef interface IInterconnector IInterconnector;
  8. typedef interface IProtocolInfoConnector IProtocolInfoConnector;
  9. DEFINE_GUID(IID_IInterconnector, 0x9499F420,0xCE86,0x11d1,0x8C,0xD3,0x00,0xA0,0xC9,0x59,0xBC,0x0A);
  10. MIDL_INTERFACE("9499F420-CE86-11d1-8CD3-00A0C959BC0A")
  11. IInterconnector : public IUnknown
  12. {
  13. public:
  14. STDMETHOD(GetInterconnector)( SIZE_T* pProxyFrame );
  15. STDMETHOD(GetCtlWnd)( SIZE_T* pWndCD );
  16. STDMETHOD(MakeDirty)( DISPID dispid );
  17. };
  18. DEFINE_GUID(IID_IProtocolInfoConnector, 0x5ADEA280,0xC2CD,0x11d1,0x8C,0xCB,0x00,0xA0,0xC9,0x59,0xBC,0x0A);
  19. MIDL_INTERFACE("5ADEA280-C2CD-11d1-8CCB-00A0C959BC0A")
  20. IProtocolInfoConnector : public IUnknown
  21. {
  22. public:
  23. STDMETHOD(SetProxyFrame)( SIZE_T* pProxyFrame);
  24. };
  25. DEFINE_GUID(CLSID_DHTMLEdProtocol, 0xF6E34E90,0xC032,0x11d1, 0x8C,0xCB,0x00,0xA0,0xC9,0x59,0xBC,0x0A);
  26. DEFINE_GUID(IID_IMultiLanguage2Correct, 0xDCCFC164,0x2B38,0x11d2, 0xB7,0xEC,0x00,0xC0,0x4F,0x8F,0x5D,0x9A);
  27. #endif //__DHTMLED_PRIVATE_H__
  28. // End of private.h