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.

18 lines
511 B

  1. #ifndef __BRIDGE_H_
  2. #define __BRIDGE_H_
  3. struct DECLSPEC_UUID("D3672FA1-99F2-452B-B2BD-8CDCD9B84C3F") ConfBridge;
  4. struct DECLSPEC_UUID("581d09e5-0b45-11d3-a565-00c04f8ef6e3") IPConfBridgeTerminal;
  5. interface DECLSPEC_UUID("5d410fe1-3f6e-4e1a-8d6d-7caaa52d9e93") DECLSPEC_NOVTABLE
  6. IConfBridge : public IUnknown
  7. {
  8. STDMETHOD (CreateBridgeTerminal) (
  9. IN long lMediaType,
  10. OUT ITTerminal **ppTerminal
  11. ) PURE;
  12. };
  13. #define IID_IConfBridge (__uuidof(IConfBridge))
  14. #endif