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.

38 lines
773 B

  1. // ConfBridge.h : Declaration of the CConfBridge
  2. #ifndef __CONFBRIDGE_H_
  3. #define __CONFBRIDGE_H_
  4. #include "resource.h" // main symbols
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CConfBridge
  7. class ATL_NO_VTABLE CConfBridge :
  8. public CComObjectRootEx<CComMultiThreadModelNoCS>,
  9. public CComCoClass<CConfBridge, &__uuidof(ConfBridge)>,
  10. public IConfBridge
  11. {
  12. public:
  13. DECLARE_REGISTRY_RESOURCEID(IDR_CONFBRIDGE)
  14. DECLARE_PROTECT_FINAL_CONSTRUCT()
  15. public:
  16. BEGIN_COM_MAP(CConfBridge)
  17. COM_INTERFACE_ENTRY(IConfBridge)
  18. END_COM_MAP()
  19. CConfBridge()
  20. {
  21. }
  22. STDMETHOD (CreateBridgeTerminal) (
  23. long lMediaType,
  24. ITTerminal **ppTerminal
  25. );
  26. };
  27. #endif //__CONFBRIDGE_H_