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.

27 lines
654 B

  1. // 1394Port.cpp: implementation of the C1394Port class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "precomp.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. C1394Port::C1394Port( BOOL bActive, LPTSTR pszPortName, LPTSTR pszDevicePath )
  9. : CBasePort( bActive, pszPortName, pszDevicePath, csz1394PortDesc )
  10. {
  11. // Basically let the default constructor do the work.
  12. }
  13. C1394Port::~C1394Port()
  14. {
  15. }
  16. PORTTYPE C1394Port::getPortType()
  17. {
  18. return P1394PORT;
  19. }